mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
11 lines
157 B
GLSL
11 lines
157 B
GLSL
#version 450 core
|
|
|
|
#extension GL_ARB_shader_stencil_export: enable
|
|
|
|
out int gl_FragStencilRefARB;
|
|
|
|
void main()
|
|
{
|
|
gl_FragStencilRefARB = 100;
|
|
}
|