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.h | |
parent | c81ddc2092cceb07178a9554aabc5ecf92d15557 (diff) |
main: s/GLuint/GLbitfield for state bitmasks
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/api_arrayelt.h')
-rw-r--r-- | src/mesa/main/api_arrayelt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/api_arrayelt.h b/src/mesa/main/api_arrayelt.h index 39fdeb9d2bd..03cd9ecbd51 100644 --- a/src/mesa/main/api_arrayelt.h +++ b/src/mesa/main/api_arrayelt.h @@ -33,7 +33,7 @@ extern GLboolean _ae_create_context( struct gl_context *ctx ); extern void _ae_destroy_context( struct gl_context *ctx ); -extern void _ae_invalidate_state( struct gl_context *ctx, GLuint new_state ); +extern void _ae_invalidate_state( struct gl_context *ctx, GLbitfield new_state ); extern void GLAPIENTRY _ae_ArrayElement( GLint elt ); /* May optionally be called before a batch of element calls: |