diff options
author | Brian Paul <[email protected]> | 2016-01-06 08:38:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-01-06 15:53:46 -0700 |
commit | 0d39b5fc3b5ca186814a23c07987570800aa17ec (patch) | |
tree | 0d709a19ca24747b713404b953c0814ec70d2e30 /src/mesa/main/api_arrayelt.c | |
parent | c81ddc2092cceb07178a9554aabc5ecf92d15557 (diff) |
main: s/GLuint/GLbitfield for state bitmasks
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/api_arrayelt.c')
-rw-r--r-- | src/mesa/main/api_arrayelt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/api_arrayelt.c b/src/mesa/main/api_arrayelt.c index 92d8238f431..c84db5f97f6 100644 --- a/src/mesa/main/api_arrayelt.c +++ b/src/mesa/main/api_arrayelt.c @@ -65,7 +65,7 @@ typedef struct { typedef struct { AEarray arrays[32]; AEattrib attribs[VERT_ATTRIB_MAX + 1]; - GLuint NewState; + GLbitfield NewState; /* List of VBOs we need to map before executing ArrayElements */ struct gl_buffer_object *vbo[VERT_ATTRIB_MAX]; @@ -1802,7 +1802,7 @@ _ae_ArrayElement(GLint elt) void -_ae_invalidate_state(struct gl_context *ctx, GLuint new_state) +_ae_invalidate_state(struct gl_context *ctx, GLbitfield new_state) { AEcontext *actx = AE_CONTEXT(ctx); |