Initial commit, all code samples with working CMake script for VS/Windows.

This commit is contained in:
Joey de Vries
2015-03-23 15:42:04 +01:00
commit f28ad1e256
440 changed files with 177823 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#version 330 core
layout (location = 0) in vec3 position;
layout (location = 1) in vec3 color;
out vec3 ourColor;
void main()
{
gl_Position = vec4(position, 1.0f);
ourColor = color;
}