From: Brian Paul Date: Tue, 29 Nov 2011 14:44:20 +0000 (-0700) Subject: mesa: use _mesa_is_bufferobj() in update_array() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=efcf5aa13f2000eb3620a99f82043001db07e6b2;p=mesa.git mesa: use _mesa_is_bufferobj() in update_array() --- diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index cfb0aa2a0c1..540e8963c81 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -195,7 +195,7 @@ update_array(struct gl_context *ctx, } if (ctx->Array.ArrayObj->VBOonly && - ctx->Array.ArrayBufferObj->Name == 0) { + !_mesa_is_bufferobj(ctx->Array.ArrayBufferObj)) { /* GL_ARB_vertex_array_object requires that all arrays reside in VBOs. * Generate GL_INVALID_OPERATION if that's not true. */