mirror of https://github.com/bsnes-emu/bsnes.git
9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
|
//Pixellate shader
|
||
|
//license: GPL
|
||
|
//author: Fes
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = ftransform();
|
||
|
gl_TexCoord[0] = gl_MultiTexCoord0;
|
||
|
}
|