6 lines
92 B
GLSL
6 lines
92 B
GLSL
#version 330 core
|
|
out vec4 color;
|
|
void main()
|
|
{
|
|
color = vec4(1.0f, 0.5f, 0.2f, 1.0f);
|
|
}
|