diff options
author | Dave Airlie <[email protected]> | 2010-09-10 11:27:31 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-10 11:29:23 +1000 |
commit | 42da02743358fd4b212f47d2727340dcd0578b5a (patch) | |
tree | 63b10ab1983983fc62d15800c8eb1021902e5a56 /src/gallium/drivers/r600/radeon.h | |
parent | e795ca8f3175fa6fd97b6b2ef2775e3f8803012a (diff) |
r600g: align flushing of cb/db with DDX/r600c.
the DDX and r600c both flush cb/db after the draw is emitted,
as long as they do that, r600g can't be different, as it races.
We end up with r600g flush, set CB, DDX set CB, flush. This
was causing misrendering on my evergreen, where sometimes the drawing
would go to an old CB.
Diffstat (limited to 'src/gallium/drivers/r600/radeon.h')
-rw-r--r-- | src/gallium/drivers/r600/radeon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/radeon.h b/src/gallium/drivers/r600/radeon.h index 0a8cb73e7dc..5759f363ead 100644 --- a/src/gallium/drivers/r600/radeon.h +++ b/src/gallium/drivers/r600/radeon.h @@ -212,6 +212,8 @@ enum r600_stype { R600_STATE_UCP, R600_STATE_VGT, R600_STATE_DRAW, + R600_STATE_CB_FLUSH, + R600_STATE_DB_FLUSH, }; #include "r600_states_inc.h" |