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

8 lines
133 B
GLSL

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