10 lines
128 B
GLSL
10 lines
128 B
GLSL
|
#version 330 core
|
||
|
|
||
|
layout (location = 0) out vec4 fragColor;
|
||
|
|
||
|
in vec3 color;
|
||
|
|
||
|
|
||
|
void main() {
|
||
|
fragColor = vec4(color, 1.0);
|
||
|
}
|