mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-12-03 17:42:40 +00:00
12 lines
138 B
GLSL
12 lines
138 B
GLSL
|
#version 450
|
||
|
|
||
|
layout (location = 0) in vec4 color;
|
||
|
|
||
|
layout (location = 0) out vec4 frag_color;
|
||
|
|
||
|
void
|
||
|
main (void)
|
||
|
{
|
||
|
frag_color = color;
|
||
|
}
|