mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-30 03:30:45 +00:00
c74c7ae053
Use UBOs instead, should be more compatible with early drivers.
19 lines
385 B
GLSL
19 lines
385 B
GLSL
#version 310 es
|
|
layout(location = 0) in vec4 Position;
|
|
layout(location = 1) in vec2 TexCoord;
|
|
layout(location = 2) in vec4 Color;
|
|
layout(location = 0) out vec2 vTexCoord;
|
|
layout(location = 1) out vec4 vColor;
|
|
|
|
layout(set = 0, binding = 0, std140) uniform UBO
|
|
{
|
|
mat4 MVP;
|
|
} global;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = global.MVP * Position;
|
|
vTexCoord = TexCoord;
|
|
vColor = Color;
|
|
}
|