mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
10 lines
84 B
GLSL
10 lines
84 B
GLSL
#version 450
|
|
|
|
invariant gl_Position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|