mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
9 lines
133 B
Plaintext
9 lines
133 B
Plaintext
|
#version 450
|
||
|
|
||
|
#extension GL_ARB_shader_viewport_layer_array : require
|
||
|
|
||
|
layout(triangles) in;
|
||
|
void main() {
|
||
|
gl_ViewportIndex = 1;
|
||
|
}
|