You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
17 lines
306 B
4 months ago
|
#version 450
|
||
|
#extension GL_NV_viewport_array2 :require
|
||
|
|
||
|
layout(vertices = 4) out;
|
||
|
|
||
|
out gl_PerVertex {
|
||
|
int gl_ViewportMask[2];
|
||
|
} gl_out[4];
|
||
|
|
||
|
layout (viewport_relative) out highp int gl_Layer;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_out[gl_InvocationID].gl_ViewportMask[0] = 1;
|
||
|
gl_ViewportIndex = 2;
|
||
|
}
|