9 lines
115 B
GLSL
9 lines
115 B
GLSL
|
|
varying vec2 tex_coord_i;
|
|
uniform sampler2D tex;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(tex, tex_coord_i);
|
|
}
|