mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-10 12:30:05 +00:00
10 lines
257 B
GLSL
10 lines
257 B
GLSL
|
#version 450
|
||
|
#extension GL_ARB_shader_viewport_layer_array : require
|
||
|
#extension GL_NV_viewport_array2 : require
|
||
|
|
||
|
layout (viewport_relative) out highp int gl_Layer;
|
||
|
void main()
|
||
|
{
|
||
|
gl_ViewportMask[0] = 1;
|
||
|
gl_ViewportIndex = 2;
|
||
|
}
|