From: Brian Paul Date: Tue, 30 Aug 2011 15:44:47 +0000 (-0600) Subject: tnl: use buffer helper functions to improve readbility X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=642bbc6f596722492470c4322a9c011e1705a951 tnl: use buffer helper functions to improve readbility --- diff --git a/src/mesa/tnl/t_draw.c b/src/mesa/tnl/t_draw.c index 86af4b7cfe2..a5225c439b5 100644 --- a/src/mesa/tnl/t_draw.c +++ b/src/mesa/tnl/t_draw.c @@ -26,6 +26,7 @@ */ #include "main/glheader.h" +#include "main/bufferobj.h" #include "main/condrender.h" #include "main/context.h" #include "main/imports.h" @@ -346,7 +347,8 @@ static void bind_indices( struct gl_context *ctx, return; } - if (ib->obj->Name && !ib->obj->Pointer) { + if (_mesa_is_bufferobj(ib->obj) && !_mesa_bufferobj_mapped(ib->obj)) { + /* if the buffer object isn't mapped yet, map it now */ unsigned map_size; switch (ib->type) {