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) in vec4 position;
void main()
{
gl_Position = position;
};