raze-gles/source/common/rendering/gl_load/gl_interface.h
Christoph Oelckers 556eb44690 - moved gl_load to 'common'.
# Conflicts:
#	source/CMakeLists.txt
#	source/common/rendering/gl_load/gl_interface.cpp
2020-05-24 16:44:13 +02: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