mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
11 lines
189 B
GLSL
11 lines
189 B
GLSL
#version 450
|
|
|
|
#extension GL_NVX_multiview_per_view_attributes :require
|
|
|
|
void main()
|
|
{
|
|
gl_ViewportMaskPerViewNV[0] = 1;
|
|
gl_PositionPerViewNV[0] = gl_Position;
|
|
}
|
|
|