engineer-thesis-WUT/Engine/engine/shaders/yellow.fs

6 lines
98 B
GLSL

#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0f, 1.0f, 0.0f, 1.0f);
}