7 lines
117 B
Plaintext
7 lines
117 B
Plaintext
varying vec2 uv;
|
|
uniform sampler2D texture;
|
|
|
|
void main() {
|
|
gl_FragColor = texture2D(texture,uv) * gl_Color;
|
|
}
|