mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-28 13:40:41 +00:00
15 lines
175 B
GLSL
15 lines
175 B
GLSL
#version 140
|
|
|
|
in mat4 transform;
|
|
|
|
attribute vec4 position;
|
|
in vec2 uv_in;
|
|
|
|
out vec2 uv;
|
|
|
|
void main()
|
|
{
|
|
uv = uv_in;
|
|
gl_Position = transform * position;
|
|
}
|