mirror of
https://github.com/JoeyDeVries/LearnOpenGL.git
synced 2026-01-02 04:37:54 +08:00
7 lines
116 B
GLSL
7 lines
116 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0); // set alle 4 vector values to 1.0
|
|
} |