First Commit
This commit is contained in:
commit
5ccf998834
34 changed files with 1608 additions and 0 deletions
8
VBO/res/shaders/main.frag
Normal file
8
VBO/res/shaders/main.frag
Normal file
|
@ -0,0 +1,8 @@
|
|||
#version 330
|
||||
out vec4 fragColor;
|
||||
|
||||
in vec4 color;
|
||||
|
||||
void main(void){
|
||||
fragColor = color;
|
||||
}
|
Reference in a new issue