mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
10 lines
136 B
GLSL
10 lines
136 B
GLSL
#version 460
|
|
|
|
layout(location = 0) out vec4 frag_color;
|
|
|
|
layout(location = 0) flat in vec4 color;
|
|
|
|
void main() {
|
|
frag_color = color;
|
|
}
|