mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
11 lines
171 B
GLSL
11 lines
171 B
GLSL
#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);
|
|
}
|