mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-14 08:22:25 -04:00
13 lines
158 B
GLSL
13 lines
158 B
GLSL
#version 300 es
|
|
|
|
precision highp float;
|
|
|
|
in vec4 v_color;
|
|
in vec2 v_texcoord;
|
|
uniform vec4 color;
|
|
|
|
out vec4 frag_color;
|
|
|
|
void main() {
|
|
frag_color = color;
|
|
}
|