mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
27 lines
326 B
GLSL
27 lines
326 B
GLSL
#version 310 es
|
|
|
|
layout(location = 0) in vec4 a;
|
|
layout(location = 1) in vec4 b;
|
|
layout(location = 2) in vec4 c;
|
|
layout(location = 3) in vec4 d;
|
|
|
|
struct VOut
|
|
{
|
|
vec4 a;
|
|
vec4 b;
|
|
vec4 c;
|
|
vec4 d;
|
|
};
|
|
|
|
layout(location = 0) out VOut vout;
|
|
|
|
void emit_result(VOut v)
|
|
{
|
|
vout = v;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
emit_result(VOut(a, b, c, d));
|
|
}
|