mirror of
https://github.com/libretro/glslang.git
synced 2025-02-12 19:29:36 +00:00
15 lines
180 B
GLSL
15 lines
180 B
GLSL
#version 140
|
|
|
|
uniform mat4 transform;
|
|
|
|
attribute vec4 position;
|
|
in vec2 uv_in;
|
|
|
|
out vec2 uv;
|
|
|
|
void main()
|
|
{
|
|
uv = uv_in;
|
|
gl_Position = transform * position;
|
|
}
|