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