mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
10 lines
139 B
GLSL
10 lines
139 B
GLSL
#version 440
|
|
layout(triangles) in;
|
|
layout(max_vertices = 3, triangle_strip) out;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = gl_in[0].gl_Position;
|
|
}
|
|
|