mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-14 22:41:53 +00:00
89d607c9a6
No changes to the files themselves was made.
21 lines
322 B
C
21 lines
322 B
C
#ifndef R_RENDER
|
|
#define R_RENDER
|
|
|
|
#include "basictypes.h"
|
|
|
|
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
|
|
|