Initial commit.

This commit is contained in:
Aleksander Rognhaugen
2016-01-29 14:28:37 +01:00
commit 82a4de6b9a
18 changed files with 764 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#version 400 core
out vec4 color;
void main()
{
color = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}