Files
c-prime/application/source/engine/uniform.c

27 lines
230 B
C
Raw Normal View History

2025-11-17 10:28:09 +01:00
#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;
}