mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 03:06:55 -04:00
12 lines
172 B
GLSL
12 lines
172 B
GLSL
#version 460
|
|
|
|
layout(location = 0) out vec4 frag_color;
|
|
|
|
layout(location = 0) flat in vec4 color;
|
|
|
|
uniform sampler2D texture_sampler;
|
|
|
|
void main() {
|
|
frag_color = color;
|
|
}
|