diff options
author | Corbin Simpson <[email protected]> | 2009-01-19 21:03:24 -0800 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-02-01 23:30:23 -0800 |
commit | 2e09845277ce75fa7d29020c5b119ad749522592 (patch) | |
tree | bac1637cf0f50d8dd5a7e3fa4f1d2ba60a12a7d3 /src/gallium/drivers/r300/r300_context.c | |
parent | 7961974fc28257b293961d35f15c0ce7a85f2669 (diff) |
r300: Various flags, small state tracking things.
Getting these out of the way so more stuff can be put in.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_context.c b/src/gallium/drivers/r300/r300_context.c index b072179f5be..798d6bdc6f5 100644 --- a/src/gallium/drivers/r300/r300_context.c +++ b/src/gallium/drivers/r300/r300_context.c @@ -56,5 +56,8 @@ struct pipe_context* r300_create_context(struct pipe_screen* screen, r300_init_state_functions(r300); + r300->dirty_state = R300_NEW_KITCHEN_SINK; + r300->dirty_hw++; + return &r300->context; } |