0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom-gpl.git synced 2025-03-11 19:41:45 +00:00
qzdoom-gpl/wadsrc/static/shaders/glsl/stencil.fp
2016-09-04 08:15:29 +02:00

8 lines
95 B
GLSL

in vec4 pixelpos;
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0, 1.0, 1.0, 0.0);
}