8 lines
83 B
GLSL
8 lines
83 B
GLSL
#version 430 core
|
|
out vec4 fColor;
|
|
|
|
void main()
|
|
{
|
|
fColor = vec4 (0.9,0.5,0,0);
|
|
}
|