Added OpenGL test.

This commit is contained in:
Angelo Papenhoff
2015-01-17 21:51:04 +01:00
parent c0fab82c52
commit fc40bbdffe
17 changed files with 2283 additions and 0 deletions

6
tests/gl/gl.h Executable file
View File

@@ -0,0 +1,6 @@
namespace gl {
GLint linkProgram(GLint vertshader, GLint fragshader);
GLint compileShader(const char **src, int count, int type);
}