gzdoom/wadsrc/static/shaders/scene/frag_stencil.glsl

11 lines
161 B
Text
Raw Normal View History

2023-03-19 06:18:12 +00:00
void main()
{
FragColor = vec4(1.0, 1.0, 1.0, 0.0);
#ifdef GBUFFER_PASS
FragFog = vec4(0.0, 0.0, 0.0, 1.0);
FragNormal = vec4(0.5, 0.5, 0.5, 1.0);
#endif
}