mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 09:40:11 +00:00
9 lines
92 B
GLSL
9 lines
92 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 Pos;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0);
|
|
}
|