diff options
author | Marek Olšák <[email protected]> | 2014-12-31 00:42:22 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-01-07 12:06:43 +0100 |
commit | 638fa8016a39db95361922ea63390f34654aef37 (patch) | |
tree | 127b834b6a497003e5ad9cee861ce34df2366922 /src/gallium/drivers/radeonsi/si_pm4.c | |
parent | 9141d8855555e45a057970e78969e1518ad3617d (diff) |
radeonsi: remove init config from states
It really doesn't do anything there.
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pm4.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pm4.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pm4.c b/src/gallium/drivers/radeonsi/si_pm4.c index 21ab9f24b21..27293464e5c 100644 --- a/src/gallium/drivers/radeonsi/si_pm4.c +++ b/src/gallium/drivers/radeonsi/si_pm4.c @@ -169,7 +169,6 @@ void si_pm4_emit_dirty(struct si_context *sctx) if (!state || sctx->emitted.array[i] == state) continue; - assert(state != sctx->queued.named.init); si_pm4_emit(sctx, state); sctx->emitted.array[i] = state; } |