diff options
author | keithw <keithw@keithw-laptop.(none)> | 2007-08-25 22:00:36 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2007-08-25 22:01:32 +0100 |
commit | 4185da4681405f3cc4d0cc601d428f2f44d0dda8 (patch) | |
tree | 9640d32ac9034035269bcb81973114a2c91969b0 /src/mesa/state_tracker/st_context.h | |
parent | 07d97e80e616d9fdc437d3b41055c347d5c54932 (diff) |
add names to tracked state atoms to improve debug
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 9e8015d4c7..cb34994d77 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -48,6 +48,7 @@ struct st_state_flags { }; struct st_tracked_state { + const char *name; struct st_state_flags dirty; void (*update)( struct st_context *st ); }; |