mirror of
https://github.com/ZDoom/Raze.git
synced 2025-05-23 21:32:25 +00:00
- added the GL framebuffer class.
Everything compiles again but obviously no init code will run for now.
This commit is contained in:
parent
6b475417dc
commit
a1f7f0cc30
26 changed files with 8946 additions and 8903 deletions
19
source/common/rendering/gl_load/gl_interface.h
Normal file
19
source/common/rendering/gl_load/gl_interface.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue