1
0
Fork 0

First Commit

This commit is contained in:
MrDev023 2015-07-15 17:19:40 +02:00
commit 5ccf998834
34 changed files with 1608 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#version 330
out vec4 fragColor;
in vec4 color;
void main(void){
fragColor = color;
}