9 lines
157 B
GLSL
9 lines
157 B
GLSL
#version 330
|
|
|
|
in vec4 fragColor;
|
|
out vec4 finalColor;
|
|
|
|
void main() {
|
|
// Advanced coloring. CG lecture really paying off now
|
|
finalColor = fragColor;
|
|
} |