ObjectGl, ObjectGlColor, ObjectGlTex added

This commit is contained in:
Antoine
2021-05-18 21:18:26 +02:00
parent b7de1556cc
commit c6181c96fe
13 changed files with 110 additions and 64 deletions

View File

@@ -0,0 +1,8 @@
#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}