mirror of
https://github.com/libretro/RetroArch
synced 2025-03-11 19:13:36 +00:00
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
27 lines
270 B
GLSL
27 lines
270 B
GLSL
#version 450
|
|
|
|
out gl_PerVertex
|
|
{
|
|
vec4 gl_Position;
|
|
};
|
|
|
|
struct VSOut
|
|
{
|
|
float a;
|
|
vec4 pos;
|
|
};
|
|
|
|
struct VSOut_1
|
|
{
|
|
float a;
|
|
};
|
|
|
|
layout(location = 0) out VSOut_1 _entryPointOutput;
|
|
|
|
void main()
|
|
{
|
|
_entryPointOutput.a = 40.0;
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|