7 lines
86 B
GLSL
Executable file
7 lines
86 B
GLSL
Executable file
#version 330
|
|
out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(0.2f, 0.1f, 0.8f, 1.f);
|
|
} |