0
0
Fork 0
mirror of https://github.com/ZDoom/Raze.git synced 2025-02-02 21:21:27 +00:00
raze/source/common/rendering/gl_load/gl_interface.h

20 lines
297 B
C
Raw Normal View History

#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