mirror of
https://github.com/libretro/RetroArch
synced 2025-02-14 15:39:59 +00:00
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
13 lines
268 B
GLSL
13 lines
268 B
GLSL
#version 310 es
|
|
|
|
uniform vec4 UBO[56];
|
|
layout(location = 0) in vec4 aVertex;
|
|
|
|
void main()
|
|
{
|
|
vec4 a4 = UBO[23];
|
|
vec4 offset = (UBO[50] + UBO[45]) + vec4(UBO[54].x);
|
|
gl_Position = ((mat4(UBO[40], UBO[41], UBO[42], UBO[43]) * aVertex) + UBO[55]) + offset;
|
|
}
|
|
|