mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
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 <airlied@redhat.com>
This commit is contained in:
parent
3869be74af
commit
ece871c038
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue