From fe34e8bcd94d24ae40606fe505a6d797702e7dd2 Mon Sep 17 00:00:00 2001 From: SilentMoose Date: Tue, 14 Apr 2015 11:19:07 -0500 Subject: [PATCH] Update context.h Comment english was unclear and did not state the purpose of the code. --- src/mesa/main/context.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/context.h b/src/mesa/main/context.h index 792ab4cd55e..e0b4907da83 100644 --- a/src/mesa/main/context.h +++ b/src/mesa/main/context.h @@ -185,8 +185,8 @@ _mesa_Flush( void ); /** - * Are we currently between glBegin and glEnd? - * During execution, not display list compilation. + * Checking if we are between glBegin and glEnd + * During execution, do not display list compilation. */ static inline GLboolean _mesa_inside_begin_end(const struct gl_context *ctx) @@ -196,7 +196,7 @@ _mesa_inside_begin_end(const struct gl_context *ctx) /** - * Are we currently between glBegin and glEnd in a display list? + * Checking if between glBegin and glEnd in a display list. */ static inline GLboolean _mesa_inside_dlist_begin_end(const struct gl_context *ctx)