raze-gles/source/common/rendering/gl_load/gl_interface.h
Christoph Oelckers a1f7f0cc30 - added the GL framebuffer class.
Everything compiles again but obviously no init code will run for now.
2019-12-23 15:40:17 +01:00

19 lines
297 B
C

#ifndef R_RENDER
#define R_RENDER
struct RenderContext
{
unsigned int flags;
unsigned int maxuniforms;
unsigned int maxuniformblock;
unsigned int uniformblockalignment;
float glslversion;
int max_texturesize;
char * vendorstring;
char * modelstring;
};
extern RenderContext gl;
#endif