done hellow triangle.

This commit is contained in:
siriusfox 2022-07-03 18:24:27 -07:00
parent 437b1ccd44
commit 56bc859562
2 changed files with 89 additions and 44 deletions

View file

@ -0,0 +1,6 @@
#version 420 core
out vec4 FragColor;
void main() {
FragColor = vec4(0.0f, 1.0f, 0.2f, 1.0f);
}