new file mode 100644
@@ -0,0 +1,8 @@
+#version 150
+
+in vec3 inPosition;
+void main(void)
+{
+ gl_Position = vec4(inPosition, 1.0);
+}