7 lines
103 B
Plaintext
7 lines
103 B
Plaintext
|
#version 330 core
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(0.92f, 0.86f, 0.68f, 1.0f);
|
||
|
}
|