OSDN Git Service

mesa: use _mesa_reference_buffer_object() in a few places
authorBrian Paul <brianp@vmware.com>
Wed, 10 Jun 2009 19:44:35 +0000 (13:44 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 12 Jun 2009 22:01:02 +0000 (16:01 -0600)
src/mesa/vbo/vbo_context.c
src/mesa/vbo/vbo_rebase.c
src/mesa/vbo/vbo_split_copy.c

index 90025f6..75c32e0 100644 (file)
@@ -153,7 +153,8 @@ static void init_mat_currval(GLcontext *ctx)
       cl->Stride = 0;
       cl->StrideB = 0;
       cl->Enabled = 1;
-      cl->BufferObj = ctx->Shared->NullBufferObj;
+      _mesa_reference_buffer_object(ctx, &cl->BufferObj,
+                                    ctx->Shared->NullBufferObj);
    }
 }
 
index ea87ded..2fcaba2 100644 (file)
@@ -49,6 +49,7 @@
 #include "main/glheader.h"
 #include "main/imports.h"
 #include "main/mtypes.h"
+#include "main/bufferobj.h"
 
 #include "vbo.h"
 
@@ -161,7 +162,8 @@ void vbo_rebase_prims( GLcontext *ctx,
                                 GL_ELEMENT_ARRAY_BUFFER,
                                 ib->obj);
 
-      tmp_ib.obj = ctx->Shared->NullBufferObj;
+      _mesa_reference_buffer_object(ctx, &tmp_ib.obj,
+                                    ctx->Shared->NullBufferObj);
       tmp_ib.ptr = tmp_indices;
       tmp_ib.count = ib->count;
       tmp_ib.type = ib->type;
index dcb14c8..2725cc8 100644 (file)
@@ -30,6 +30,7 @@
  */
 
 #include "main/glheader.h"
+#include "main/bufferobj.h"
 #include "main/imports.h"
 #include "main/image.h"
 #include "main/macros.h"
@@ -517,7 +518,8 @@ replay_init( struct copy_context *copy )
       dst->Ptr = copy->dstbuf + offset;
       dst->Enabled = GL_TRUE;
       dst->Normalized = src->Normalized; 
-      dst->BufferObj = ctx->Shared->NullBufferObj;
+      _mesa_reference_buffer_object(ctx, &dst->BufferObj,
+                                    ctx->Shared->NullBufferObj);
       dst->_MaxElement = copy->dstbuf_size; /* may be less! */
 
       offset += copy->varying[i].size;
@@ -537,7 +539,8 @@ replay_init( struct copy_context *copy )
     */
    copy->dstib.count = 0;      /* duplicates dstelt_nr */
    copy->dstib.type = GL_UNSIGNED_INT;
-   copy->dstib.obj = ctx->Shared->NullBufferObj;
+   _mesa_reference_buffer_object(ctx, &copy->dstib.obj,
+                                 ctx->Shared->NullBufferObj);
    copy->dstib.ptr = copy->dstelt;
 }