mirror of
https://github.com/Linloir/SceneEditor.git
synced 2025-12-17 07:28:12 +08:00
7 lines
101 B
GLSL
7 lines
101 B
GLSL
#version 430 core
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);
|
|
} |