991b52b233
Builtin general structure created. Added a builtin::BasicScene class for quick general testing of the engine on different systems. The builtin::BasicScene class greatly reduces the amount of code needed to be handled by the developer by offering a pre-made way to handle it. It even includes pre-made shaders!
6 lines
89 B
GLSL
6 lines
89 B
GLSL
#version 430
|
|
out vec4 frag_color;
|
|
void main()
|
|
{
|
|
frag_color = vec4(1.0, 1.0, 1.0, 1.0);
|
|
} |