UnnamedCarGame/resources/shaders/test/shader.frag

7 lines
108 B
GLSL
Raw Normal View History

2023-02-23 15:02:13 +01:00
#version 330 core
out vec4 Color;
void main()
{
Color = vec4(0.9, 0.5, 0.2, 1.0);
}