From: Brian Paul Date: Fri, 30 Jan 2009 22:24:13 +0000 (-0700) Subject: mesa: remove incorrect refcounting adjustment in adjust_buffer_object_ref_counts() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=88e0b92a747d9b14885010029133fa1221696e5e;p=mesa.git mesa: remove incorrect refcounting adjustment in adjust_buffer_object_ref_counts() Fixes bug 19835. However, a more elaborate fix should be implemented someday which uses proper reference counting for gl_array_object. --- diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 98173cf7862..218e0aeb6b7 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1267,9 +1267,6 @@ adjust_buffer_object_ref_counts(struct gl_array_attrib *array, GLint step) array->ArrayObj->TexCoord[i].BufferObj->RefCount += step; for (i = 0; i < VERT_ATTRIB_MAX; i++) array->ArrayObj->VertexAttrib[i].BufferObj->RefCount += step; - - array->ArrayBufferObj->RefCount += step; - array->ElementArrayBufferObj->RefCount += step; }