1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#pragma once #ifndef SOLID_H #define SOLID_H #include <GL/gl.h> int solid_load(void); int solid_draw( GLenum primitive, GLuint vao, GLsizei count, GLfloat const * const color, GLfloat const * const modelview, GLfloat const * const projection ); #endif/*POSITIONGEN_H*/