Merge texmem-0-3-branch.

This commit is contained in:
Keith Whitwell
2006-11-01 14:21:57 +00:00
parent 232a489b41
commit 5ac93f8621
20 changed files with 1753 additions and 536 deletions

View File

@@ -1003,7 +1003,7 @@ update_color(GLcontext *ctx)
* _mesa_update_lighting() and _mesa_update_tnl_spaces().
*/
void
_mesa_update_state( GLcontext *ctx )
_mesa_update_state_locked( GLcontext *ctx )
{
GLbitfield new_state = ctx->NewState;
@@ -1084,4 +1084,17 @@ _mesa_update_state( GLcontext *ctx )
ctx->Array.NewState = 0;
}
/* This is the usual entrypoint for state updates:
*/
void
_mesa_update_state( GLcontext *ctx )
{
_mesa_lock_context_textures(ctx);
_mesa_update_state_locked(ctx);
_mesa_unlock_context_textures(ctx);
}
/*@}*/