mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
14 lines
304 B
GLSL
14 lines
304 B
GLSL
#version 450
|
|
|
|
layout(cw, quads) in;
|
|
layout(location = 0) in mat4 vInputs[gl_MaxPatchVertices];
|
|
layout(location = 4) patch in vec4 vBoo[4];
|
|
layout(location = 8) patch in int vIndex;
|
|
|
|
void main()
|
|
{
|
|
mat4 tmp[gl_MaxPatchVertices] = vInputs;
|
|
gl_Position = tmp[0][vIndex] + tmp[1][vIndex] + vBoo[vIndex];
|
|
|
|
}
|