7 lines
104 B
GLSL
7 lines
104 B
GLSL
uniform sampler2D inputMap;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D( inputMap, gl_TexCoord[0].xy );
|
|
}
|