diff options
author | Kristian Høgsberg <[email protected]> | 2010-09-09 18:59:49 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-09-09 19:02:55 -0400 |
commit | 042a333028eba49f21b45cafaf9dd15d34c68033 (patch) | |
tree | 0827f533c2a7e53d0b80fe1261e5b1ca028fee5f /src/mesa/main/dlist.c | |
parent | 1f3c7d968c4313dbb71bc93306556cc9292d06ef (diff) |
Revert "glapi: Implement optional dispatch logging"
This reverts commit b9abc6139a310677a37754ea7172d976dbf56979 and the
follow on fixes (7aae704 and 6fe1b47). It's changing the glapi/driver
ABI and causes a number of problems for debug/non-debug builds.
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 0c4e3d51a9d..6928d21a21e 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -8062,7 +8062,7 @@ _mesa_NewList(GLuint name, GLenum mode) ctx->Driver.NewList(ctx, name, mode); ctx->CurrentDispatch = ctx->Save; - _mesa_set_dispatch(ctx->CurrentDispatch); + _glapi_set_dispatch(ctx->CurrentDispatch); } @@ -8109,7 +8109,7 @@ _mesa_EndList(void) ctx->CompileFlag = GL_FALSE; ctx->CurrentDispatch = ctx->Exec; - _mesa_set_dispatch(ctx->CurrentDispatch); + _glapi_set_dispatch(ctx->CurrentDispatch); } @@ -8143,7 +8143,7 @@ _mesa_CallList(GLuint list) /* also restore API function pointers to point to "save" versions */ if (save_compile_flag) { ctx->CurrentDispatch = ctx->Save; - _mesa_set_dispatch(ctx->CurrentDispatch); + _glapi_set_dispatch(ctx->CurrentDispatch); } } @@ -8195,7 +8195,7 @@ _mesa_CallLists(GLsizei n, GLenum type, const GLvoid * lists) /* also restore API function pointers to point to "save" versions */ if (save_compile_flag) { ctx->CurrentDispatch = ctx->Save; - _mesa_set_dispatch(ctx->CurrentDispatch); + _glapi_set_dispatch(ctx->CurrentDispatch); } } |