diff options
author | Dave Airlie <[email protected]> | 2011-05-25 09:37:33 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-05-25 09:37:33 +1000 |
commit | ece871c03876221636166ebd3f091ebeb10afbf1 (patch) | |
tree | 6fb553863e53dea3c24108cb7a58e357cccb9fca | |
parent | 3869be74afb184dbdf9d67fda3de3e3ac7e3db6c (diff) |
r600g: flush the DB dest base as well.
If we do this for CB bases then we should do it for DB bases.
noticed while adding cayman support.
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/gallium/winsys/r600/drm/r600_hw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/r600/drm/r600_hw_context.c b/src/gallium/winsys/r600/drm/r600_hw_context.c index 7c3fd1aa206..1e29da2cf09 100644 --- a/src/gallium/winsys/r600/drm/r600_hw_context.c +++ b/src/gallium/winsys/r600/drm/r600_hw_context.c @@ -1229,7 +1229,7 @@ void r600_context_flush_dest_caches(struct r600_context *ctx) 0, cb[i]); } if (db) { - r600_context_bo_flush(ctx, S_0085F0_DB_ACTION_ENA(1), 0, db); + r600_context_bo_flush(ctx, S_0085F0_DB_ACTION_ENA(1) | S_0085F0_DB_DEST_BASE_ENA(1), 0, db); } ctx->flags &= ~R600_CONTEXT_CHECK_EVENT_FLUSH; ctx->flags &= ~R600_CONTEXT_DST_CACHES_DIRTY; |