mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
18 lines
213 B
GLSL
18 lines
213 B
GLSL
#version 450
|
|
|
|
out gl_PerVertex
|
|
{
|
|
vec4 gl_Position;
|
|
float gl_PointSize;
|
|
float gl_ClipDistance[1];
|
|
float gl_CullDistance[1];
|
|
};
|
|
|
|
invariant gl_Position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|