12 lines
122 B
Plaintext
12 lines
122 B
Plaintext
#version 450 core
|
|
|
|
// Input
|
|
in vec3 fragmentColor;
|
|
|
|
// Ouput data
|
|
out vec3 color;
|
|
|
|
void main()
|
|
{
|
|
color = fragmentColor;
|
|
} |