0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2025-03-02 15:42:17 +00:00
gzdoom/wadsrc/static/shaders/glsl/stencil.fp

9 lines
80 B
Text
Raw Normal View History

2014-05-12 20:24:26 +00:00
in vec4 pixelpos;
out vec4 FragColor;
2014-05-12 20:24:26 +00:00
void main()
{
FragColor = vec4(1.0);
2014-05-12 20:24:26 +00:00
}