mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 19:43:07 +02:00
7 lines
129 B
GLSL
7 lines
129 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
in vec3 vertexColor; // from vertex
|
|
void main()
|
|
{
|
|
FragColor = vec4(vertexColor, 1.0);
|
|
} |