gtk2/gdk/resources/glsl/gl3-texture-rect.fs.glsl

10 lines
120 B
Plaintext
Raw Normal View History

#version 150
varying vec2 vUv;
uniform sampler2DRect map;
void main() {
gl_FragColor = texture2DRect (map, vUv);
}