Files
starruler-linux/data/shaders/source/fs_plain_ps.txt
T
2018-07-17 14:15:37 +02:00

7 lines
105 B
Plaintext

uniform sampler2D screen;
varying vec2 uv;
void main() {
gl_FragColor = texture2D(screen, uv);
}