* Update SPIRV libraries - Update `spirv-cross` - Update `spirv-tools` - Update `glslang` `spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions). * Add SPIRV-Tools dependency to matinfo
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;
|
|
}
|
|
|