From: Michal Wajdeczko Date: Fri, 21 Mar 2008 20:05:42 +0000 (-0700) Subject: [965] Shuffle state flags to match the order we initialize them in. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa8a7ef823b2d8e43c4d0e37fdc457ad6930b737;p=mesa.git [965] Shuffle state flags to match the order we initialize them in. --- diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 4e6b471fdde..56021fa2094 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -146,12 +146,12 @@ struct brw_context; struct brw_state_flags { /** State update flags signalled by mesa internals */ GLuint mesa; - /** State update flags signalled by brw_state_cache.c searches */ - GLuint cache; /** * State update flags signalled as the result of brw_tracked_state updates */ GLuint brw; + /** State update flags signalled by brw_state_cache.c searches */ + GLuint cache; }; struct brw_vertex_program {