mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-06-13 14:32:57 -04:00
8 lines
135 B
GLSL
8 lines
135 B
GLSL
attribute vec2 pos;
|
|
attribute vec3 color;
|
|
varying vec3 v_color;
|
|
|
|
void main() {
|
|
gl_Position = vec4(pos, 0.0, 1.0);
|
|
v_color = color;
|
|
}
|