refactoring

This commit is contained in:
FunkyFr3sh 2021-06-11 20:30:43 +02:00
parent fa19797956
commit 1f11bf8b84
52 changed files with 2596 additions and 2071 deletions

View file

@ -6,7 +6,7 @@
#define TEXTURE_COUNT 4
typedef struct ogl_renderer
typedef struct OGLRENDERER
{
HGLRC context;
GLuint main_program;
@ -34,7 +34,7 @@ typedef struct ogl_renderer
BOOL use_opengl;
BOOL adjust_alignment;
BOOL filter_bilinear;
} ogl_renderer;
} OGLRENDERER;
DWORD WINAPI ogl_render_main(void);