s/GLuint/GLbitfield/
authorBrian Paul <brian.paul@tungstengraphics.com>
Mon, 9 Jan 2006 17:57:47 +0000 (17:57 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Mon, 9 Jan 2006 17:57:47 +0000 (17:57 +0000)
src/mesa/main/dd.h
src/mesa/main/state.c

index 8c7549162c493f8ba236165e843e150f53276f05..0df8cfa5b5daa63cde1f1e23fcaa4324b6d56f43 100644 (file)
@@ -64,7 +64,7 @@ struct dd_function_table {
     * This is in addition to any state change callbacks Mesa may already have
     * made.
     */
-   void (*UpdateState)( GLcontext *ctx, GLuint new_state );
+   void (*UpdateState)( GLcontext *ctx, GLbitfield new_state );
 
    /**
     * Get the width and height of the named buffer/window.
index 627b24cce0c588e420a9090f02d730c59a4a6bcf..9c59ac301f3083a98f39af98086f7f4eafb851e5 100644 (file)
@@ -957,7 +957,7 @@ update_program(GLcontext *ctx)
 void
 _mesa_update_state( GLcontext *ctx )
 {
-   GLuint new_state = ctx->NewState;
+   GLbitfield new_state = ctx->NewState;
 
    if (MESA_VERBOSE & VERBOSE_STATE)
       _mesa_print_state("_mesa_update_state", new_state);