mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 16:39:43 +00:00
24cb240079
- move some files around.
19 lines
288 B
GLSL
19 lines
288 B
GLSL
#version 150
|
|
|
|
uniform UBO
|
|
{
|
|
mat4 MVP;
|
|
vec2 OutputSize;
|
|
float time;
|
|
} global;
|
|
|
|
layout(location = 0) in vec4 Position;
|
|
layout(location = 1) in vec2 TexCoord;
|
|
layout(location = 0) out vec2 vTexCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = global.MVP * Position;
|
|
vTexCoord = TexCoord;
|
|
}
|