0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom-gles.git synced 2025-03-02 06:42:41 +00:00
gzdoom-gles/wadsrc/static/shaders/glsl/stencil.fp
2016-09-25 00:22:31 +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);
}