add DebugLog build config

This commit is contained in:
FunkyFr3sh 2020-10-13 10:15:42 +02:00
parent baaa87b18f
commit 25e561d953
9 changed files with 64 additions and 18 deletions

View file

@ -24,7 +24,7 @@ extern DWORD g_dbg_frame_count;
//#define _DEBUG 1
//use OutputDebugStringA rather than printf
#define _DEBUG_S 1
//#define _DEBUG_S 1
//log everything (slow)
//#define _DEBUG_X 1

View file

@ -36,8 +36,8 @@ extern PFNGLVERTEX2FPROC glVertex2f;
BOOL oglu_load_dll();
void oglu_init();
BOOL oglu_ext_exists(char *ext, HDC hdc);
GLuint oglu_build_program(const GLchar *vertSource, const GLchar *fragSource);
GLuint oglu_build_program_from_file(const char *filePath);
GLuint oglu_build_program(const GLchar *vert_source, const GLchar *frag_source);
GLuint oglu_build_program_from_file(const char *file_path);
extern PFNGLVIEWPORTPROC glViewport;
extern PFNGLBINDTEXTUREPROC glBindTexture;