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