mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2025-12-20 03:30:19 +01:00
10 lines
145 B
GLSL
10 lines
145 B
GLSL
|
|
#version 450 core
|
||
|
|
|
||
|
|
layout(location = 0) in vec4 vVaryingColor;
|
||
|
|
layout(location = 0) out vec4 f_color;
|
||
|
|
|
||
|
|
void main()
|
||
|
|
{
|
||
|
|
f_color = vVaryingColor;
|
||
|
|
}
|