diff options
author | Brian Paul <[email protected]> | 2016-01-06 08:38:03 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-01-06 15:53:46 -0700 |
commit | c81ddc2092cceb07178a9554aabc5ecf92d15557 (patch) | |
tree | 7bb4ac1f144a114140b6b592d37f0098b39e0af3 /src/mesa/vbo/vbo_exec.c | |
parent | 3c0521cd0fe9b82c9481f9652bb971bd625d1e40 (diff) |
vbo: s/GLuint/GLbitfield/ for state bitmasks
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_exec.c')
-rw-r--r-- | src/mesa/vbo/vbo_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_exec.c b/src/mesa/vbo/vbo_exec.c index a301c6c9a22..4db4f4088b9 100644 --- a/src/mesa/vbo/vbo_exec.c +++ b/src/mesa/vbo/vbo_exec.c @@ -73,7 +73,7 @@ void vbo_exec_destroy( struct gl_context *ctx ) * invoked according to the state flags. That will have to wait for a * mesa rework: */ -void vbo_exec_invalidate_state( struct gl_context *ctx, GLuint new_state ) +void vbo_exec_invalidate_state( struct gl_context *ctx, GLbitfield new_state ) { struct vbo_context *vbo = vbo_context(ctx); struct vbo_exec_context *exec = &vbo->exec; |