summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichal Wajdeczko <Michal.Wajdeczko@intel.com>2008-03-21 13:05:42 -0700
committerEric Anholt <eric@anholt.net>2008-03-21 14:19:30 -0700
commitaa8a7ef823b2d8e43c4d0e37fdc457ad6930b737 (patch)
tree968071337532324801dee3c385dd4cc2fcd24b92 /src
parent9f6e8e89c86d725fd0baa184af8a22f1f9032550 (diff)
[965] Shuffle state flags to match the order we initialize them in.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h
index 4e6b471fdd..56021fa209 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 {