Mesa (master): vbo: replace assert(0) with proper assertions

Brian Paul brianp at kemper.freedesktop.org
Mon Feb 21 22:16:20 UTC 2011


Module: Mesa
Branch: master
Commit: 0ba2810e47d68ec24a93c5fc74cf99afe50e8c9b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0ba2810e47d68ec24a93c5fc74cf99afe50e8c9b

Author: Brian Paul <brianp at vmware.com>
Date:   Mon Feb 21 15:11:44 2011 -0700

vbo: replace assert(0) with proper assertions

---

 src/mesa/vbo/vbo_exec_draw.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/mesa/vbo/vbo_exec_draw.c b/src/mesa/vbo/vbo_exec_draw.c
index f8be83e..38c8651 100644
--- a/src/mesa/vbo/vbo_exec_draw.c
+++ b/src/mesa/vbo/vbo_exec_draw.c
@@ -301,11 +301,8 @@ vbo_exec_vtx_map( struct vbo_exec_context *exec )
    if (!_mesa_is_bufferobj(exec->vtx.bufferobj))
       return;
 
-   if (exec->vtx.buffer_map != NULL) {
-      assert(0);
-      exec->vtx.buffer_map = NULL;
-      exec->vtx.buffer_ptr = NULL;
-   }
+   assert(!exec->vtx.buffer_map);
+   assert(!exec->vtx.buffer_ptr);
 
    if (VBO_VERT_BUFFER_SIZE > exec->vtx.buffer_used + 1024 &&
        ctx->Driver.MapBufferRange) {




More information about the mesa-commit mailing list