Module: Mesa Branch: master Commit: c32bac57ed445e48856d74113364287ed6e5cdd4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c32bac57ed445e48856d74113364287ed6e5cdd4
Author: Vinson Lee <[email protected]> Date: Fri Sep 17 23:43:38 2010 -0700 mesa: Silence "'valid_texture_object' defined but not used" warning. --- src/mesa/main/texobj.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 1df165c..c96226d 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -330,7 +330,11 @@ _mesa_reference_texobj(struct gl_texture_object **ptr, GLboolean deleteFlag = GL_FALSE; struct gl_texture_object *oldTex = *ptr; - ASSERT(valid_texture_object(oldTex)); + { + GLboolean valid = valid_texture_object(oldTex); + ASSERT(valid); + (void) valid; + } _glthread_LOCK_MUTEX(oldTex->Mutex); ASSERT(oldTex->RefCount > 0); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
