mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
s/GLuint/GLbitfield/
This commit is contained in:
parent
c2901e4f4c
commit
d469e5e5a0
2 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue