Proper cursor move and insert/delete operations at cursor

This commit is contained in:
bloeys
2022-07-15 13:38:33 +04:00
parent 1122d27f57
commit 82acbe939e
2 changed files with 102 additions and 55 deletions

View File

@ -31,7 +31,9 @@ in vec3 fragPos;
out vec4 fragColor;
uniform vec4 color = vec4(1,1,1,1);
void main()
{
fragColor = vec4(1, 1, 1, 1);
fragColor = vertColor * color;
}