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