mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
5af5222249
- https://github.com/KhronosGroup/SPIRV-Cross/commit/ 66a407285e36a0f772e3209cb86ded6e3d900f6a
17 lines
287 B
GLSL
17 lines
287 B
GLSL
#version 310 es
|
|
|
|
layout(std140) uniform UBO
|
|
{
|
|
layout(column_major) mat4 uMVPR;
|
|
layout(row_major) mat4 uMVPC;
|
|
layout(row_major) mat2x4 uMVP;
|
|
};
|
|
|
|
layout(location = 0) in vec4 aVertex;
|
|
|
|
void main()
|
|
{
|
|
vec2 v = aVertex * uMVP;
|
|
gl_Position = uMVPR * aVertex + uMVPC * aVertex;
|
|
}
|