From 3c0521cd0fe9b82c9481f9652bb971bd625d1e40 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 6 Jan 2016 08:32:02 -0700 Subject: [PATCH] st/mesa: use GLbitfield in st_state_flags, add comments MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Use GLbitfield instead of GLuint to be consistent with other variables. Reviewed-by: José Fonseca --- src/mesa/state_tracker/st_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 35c89321a54..91b0f975f3f 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -65,8 +65,8 @@ struct u_upload_mgr; struct st_state_flags { - GLuint mesa; - uint64_t st; + GLbitfield mesa; /**< Mask of _NEW_x flags */ + uint64_t st; /**< Mask of ST_NEW_x flags */ }; struct st_tracked_state { -- 2.30.2