uranium-core/nop.frag

10 lines
182 B
GLSL
Raw Normal View History

2022-09-21 14:53:20 +02:00
#version 120
uniform sampler2D sampler0;
varying vec2 textureCoord;
varying vec4 color;
void main (void) {
gl_FragColor = texture2D( sampler0, textureCoord ) * color;
}