mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
15 lines
122 B
GLSL
15 lines
122 B
GLSL
#version 450
|
|
|
|
invariant gl_Position;
|
|
|
|
vec4 _main()
|
|
{
|
|
return vec4(1.0);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
gl_Position = _main();
|
|
}
|
|
|