blob: 73b918c80ef38accac8ea96744f6a8775d382157 [file] [log] [blame]
#version 450
#extension GL_ARB_shader_viewport_layer_array : require
layout(location = 0) in vec4 coord;
void main()
{
gl_Position = coord;
gl_Layer = int(coord.z);
}