LearnOpenGL/lightsource.fs
Nigel 06b979dfaa Lighting: Basic color
Added a light source
removed texturing
removed drawing multiple instances
of the same cube
2022-02-13 13:19:54 +01:00

7 lines
82 B
GLSL

#version 460 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0);
}