12 lines
128 B
GLSL
12 lines
128 B
GLSL
|
#version 110
|
||
|
|
||
|
uniform sampler2D texy;
|
||
|
|
||
|
varying vec2 texCoord;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragData[0] = texture2D(texy, texCoord);
|
||
|
}
|
||
|
|