Load Shaders from Files

This commit is contained in:
GuilhermeWerner
2021-01-14 19:42:57 -03:00
parent fe96bc501c
commit 378070809a
3 changed files with 40 additions and 18 deletions

View File

@ -0,0 +1,8 @@
#version 330 core
layout(location = 0) out vec4 color;
void main()
{
color = vec4(0.0, 1.0, 0.0, 1.0);
};