mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
21 lines
220 B
GLSL
21 lines
220 B
GLSL
#version 450
|
|
|
|
out gl_PerVertex
|
|
{
|
|
vec4 gl_Position;
|
|
};
|
|
|
|
struct VSOut
|
|
{
|
|
float a;
|
|
};
|
|
|
|
layout(location = 0) out VSOut _entryPointOutput;
|
|
|
|
void main()
|
|
{
|
|
_entryPointOutput.a = 40.0;
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|