mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00
10 lines
131 B
GLSL
10 lines
131 B
GLSL
#version 430
|
|
|
|
layout (location=0) out vec4 frag_color;
|
|
|
|
uniform vec3 lineColor;
|
|
|
|
void main() {
|
|
frag_color = vec4(lineColor, 1);
|
|
}
|