9 lines
125 B
GLSL
9 lines
125 B
GLSL
#version 450
|
|
|
|
#extension GL_ARB_shader_viewport_layer_array : require
|
|
|
|
layout(triangles) in;
|
|
void main() {
|
|
gl_Layer = 1;
|
|
}
|