mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-09-24 19:08:31 +00:00
10 lines
103 B
GLSL
10 lines
103 B
GLSL
#version 330 core
|
|
|
|
in vec3 fragmentColor;
|
|
|
|
out vec3 color;
|
|
|
|
void main() {
|
|
color = fragmentColor;
|
|
}
|