mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
10 lines
167 B
GLSL
10 lines
167 B
GLSL
#version 450
|
|
|
|
layout(location=0) in vec2 a_position;
|
|
|
|
layout(location=0) out vec2 v_uv;
|
|
|
|
void main() {
|
|
v_uv = a_position;
|
|
gl_Position = vec4(a_position, 0.0, 1.0);
|
|
} |