mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
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:
parent
4cd1bd46ed
commit
3c0521cd0f
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue