st/mesa: use GLbitfield in st_state_flags, add comments

Use GLbitfield instead of GLuint to be consistent with other variables.

Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
Brian Paul 2016-01-06 08:32:02 -07:00
parent 4cd1bd46ed
commit 3c0521cd0f

View file

@ -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 {