Added basic object wrapper for VAOs

This commit is contained in:
Robert 2021-01-20 16:51:55 +01:00
parent c3e49cd78e
commit 8921957161
7 changed files with 162 additions and 17 deletions

View file

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