7 lines
119 B
GLSL
7 lines
119 B
GLSL
varying vec2 fragment_uv;
|
|
uniform sampler2D texture;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D(texture, fragment_uv);
|
|
}
|