Change text background to draw item

This commit is contained in:
Dan Paulat 2021-12-18 22:45:29 -06:00
parent 0945eff733
commit 689f3dc464
8 changed files with 24 additions and 113 deletions

View file

@ -1,9 +0,0 @@
#version 330 core
uniform vec4 uColor;
layout (location = 0) out vec4 fragColor;
void main()
{
fragColor = uColor;
}

View file

@ -1,9 +0,0 @@
#version 330 core
layout (location = 0) in vec2 aVertex;
uniform mat4 uMVPMatrix;
void main()
{
gl_Position = uMVPMatrix * vec4(aVertex, 0.0f, 1.0f);
}