bloat-buster/dependencies/glslang-15.0.0/Test/spv.shaderStencilExport.frag
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

11 lines
157 B
GLSL

#version 450 core
#extension GL_ARB_shader_stencil_export: enable
out int gl_FragStencilRefARB;
void main()
{
gl_FragStencilRefARB = 100;
}