From 7b762305d52ec3ec8eb896c471e18e816adc05c9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 3 May 2013 19:00:07 -0600 Subject: [PATCH] mesa: change ctx->Driver.NeedFlush to GLbitfield and update comment MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: José Fonseca --- src/mesa/main/dd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index c5531a45031..adace3b70a9 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -696,13 +696,13 @@ struct dd_function_table { #define FLUSH_UPDATE_CURRENT 0x2 /** * Set by the driver-supplied T&L engine whenever vertices are buffered - * between glBegin()/glEnd() objects or __struct gl_contextRec::Current is not - * updated. + * between glBegin()/glEnd() objects or __struct gl_contextRec::Current + * is not updated. A bitmask of the FLUSH_x values above. * * The dd_function_table::FlushVertices call below may be used to resolve * these conditions. */ - GLuint NeedFlush; + GLbitfield NeedFlush; /** Need to call SaveFlushVertices() upon state change? */ GLboolean SaveNeedFlush; -- 2.30.2