Initial commit
This commit is contained in:
27
application/source/engine/uniform.c
Normal file
27
application/source/engine/uniform.c
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
|
||||
#define GL_GLEXT_PROTOTYPES
|
||||
|
||||
#include <GL/glext.h>
|
||||
|
||||
#include <GL/gl.h> // GL 1.1 functions
|
||||
|
||||
#include <GL/glx.h>
|
||||
|
||||
|
||||
|
||||
class uniform{
|
||||
|
||||
char name[64];
|
||||
|
||||
GLint index;
|
||||
|
||||
GLint location;
|
||||
|
||||
GLint offset;
|
||||
|
||||
GLint size;
|
||||
|
||||
GLenum type;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user