mirror of
https://github.com/libretro/RetroArch
synced 2025-02-19 12:41:00 +00:00
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
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;
|
|
}
|