8 lines
102 B
GLSL
8 lines
102 B
GLSL
#version 130
|
|
uniform sampler2D tex;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture(tex, gl_TexCoord[0].xy);
|
|
}
|