s/GLuint/GLbitfield/ for st_invalidate_state() parameter
authorBrian Paul <brianp@vmware.com>
Wed, 6 Jan 2016 15:33:36 +0000 (08:33 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 6 Jan 2016 22:53:46 +0000 (15:53 -0700)
To match dd_function_table::UpdateState().

Reviewed-by: José Fonseca <jfonseca@vmware.com>
src/mesa/state_tracker/st_context.c
src/mesa/state_tracker/st_context.h

index 31cc99dca89a486b2837b19a55723ea185706321..e12c1663d3fdef681cfc9d27c069cf81c4e41e80 100644 (file)
@@ -99,7 +99,7 @@ static void st_Enable(struct gl_context * ctx, GLenum cap, GLboolean state)
 /**
  * Called via ctx->Driver.UpdateState()
  */
-void st_invalidate_state(struct gl_context * ctx, GLuint new_state)
+void st_invalidate_state(struct gl_context * ctx, GLbitfield new_state)
 {
    struct st_context *st = st_context(ctx);
 
index 276fa63223e05652bb8fddd28b2ea4eb4174e7eb..35c89321a5488f026e863c0f177c97acdd10d684 100644 (file)
@@ -252,7 +252,7 @@ struct st_framebuffer
 extern void st_init_driver_functions(struct pipe_screen *screen,
                                      struct dd_function_table *functions);
 
-void st_invalidate_state(struct gl_context * ctx, GLuint new_state);
+void st_invalidate_state(struct gl_context * ctx, GLbitfield new_state);