mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
bugfix
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3941 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
9e4edb8a9a
commit
54358b62b2
2 changed files with 5 additions and 4 deletions
|
@ -1419,6 +1419,7 @@ TRACE(("dbg: R_RestartRenderer_f\n"));
|
|||
Con_Printf("%s: %s\n", vid_bpp.name, vid_bpp.string);
|
||||
Con_Printf("%s: %s\n", vid_refreshrate.name, vid_refreshrate.string);
|
||||
Con_Printf("%s: %s\n", vid_renderer.name, vid_renderer.string);
|
||||
Con_Printf("%s: %s\n", gl_driver.name, gl_driver.string);
|
||||
}
|
||||
else
|
||||
Sys_Error("Couldn't fall back to previous renderer\n");
|
||||
|
|
|
@ -202,19 +202,19 @@ typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,
|
|||
GLsizei lengt,
|
||||
const GLchar* message,
|
||||
GLvoid* userParam);
|
||||
void (*qglDebugMessageEnableAMD)(GLenum category,
|
||||
void (APIENTRY *qglDebugMessageEnableAMD)(GLenum category,
|
||||
GLenum severity,
|
||||
GLsizei count,
|
||||
const GLuint* ids,
|
||||
GLboolean enabled);
|
||||
void (*qglDebugMessageInsertAMD)(enum category,
|
||||
void (APIENTRY *qglDebugMessageInsertAMD)(enum category,
|
||||
enum severity,
|
||||
GLuint id,
|
||||
GLsizei length,
|
||||
const char* buf);
|
||||
void (*qglDebugMessageCallbackAMD)(GLDEBUGPROCAMD callback,
|
||||
void (APIENTRY *qglDebugMessageCallbackAMD)(GLDEBUGPROCAMD callback,
|
||||
void* userParam);
|
||||
GLuint (*qglGetDebugMessageLogAMD)(GLuint count,
|
||||
GLuint (APIENTRY *qglGetDebugMessageLogAMD)(GLuint count,
|
||||
GLsizei bufsize,
|
||||
GLenum* categories,
|
||||
GLuint* severities,
|
||||
|
|
Loading…
Reference in a new issue