mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
172 B
Forth
13 lines
172 B
Forth
|
#version 150
|
||
|
|
||
|
uniform sampler2D source[];
|
||
|
|
||
|
in Vertex {
|
||
|
vec2 vTexCoord;
|
||
|
};
|
||
|
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
void main() {
|
||
|
FragColor = texture(source[0], vTexCoord);
|
||
|
}
|