mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
12 lines
301 B
GLSL
12 lines
301 B
GLSL
#version 450
|
|
|
|
#extension GL_NV_viewport_array2 :require
|
|
#extension GL_NV_stereo_view_rendering : require
|
|
|
|
layout (viewport_relative, secondary_view_offset = 2) out highp int gl_Layer;
|
|
void main()
|
|
{
|
|
gl_SecondaryViewportMaskNV[0] = 1;
|
|
gl_SecondaryPositionNV = gl_Position;
|
|
}
|
|
|