From 642bbc6f596722492470c4322a9c011e1705a951 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 30 Aug 2011 09:44:47 -0600 Subject: [PATCH] tnl: use buffer helper functions to improve readbility --- src/mesa/tnl/t_draw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) { -- 2.30.2