diff options
author | Rob Clark <[email protected]> | 2017-04-16 14:47:35 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2017-04-18 16:32:00 -0400 |
commit | d7fa7f5e7eafed8bb88f7e0b9ba4261a76ad9c95 (patch) | |
tree | 3dfa7645540997abc932d6c55a6eca37f9fdb6cf /src/gallium/drivers/freedreno/freedreno_draw.c | |
parent | b662f71d9c0726ca09cf5990de141b2e85f819d9 (diff) |
freedreno: move clear path dirty state hack to a2xx backend
a3xx/a4xx use the generic u_blitter path, which will make state dirty
bits be set appropriately thanks to the automagic of generic code
setting generic state in the driver. And a5xx has a blit/dma engine
(actually, two) so it doesn't need these extra dirty bits set.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_draw.c')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_draw.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_draw.c b/src/gallium/drivers/freedreno/freedreno_draw.c index f911d4a6095..16c9ea84af3 100644 --- a/src/gallium/drivers/freedreno/freedreno_draw.c +++ b/src/gallium/drivers/freedreno/freedreno_draw.c @@ -367,15 +367,6 @@ fd_clear(struct pipe_context *pctx, unsigned buffers, ctx->clear(ctx, buffers, color, depth, stencil); - ctx->dirty |= FD_DIRTY_ZSA | - FD_DIRTY_VIEWPORT | - FD_DIRTY_RASTERIZER | - FD_DIRTY_SAMPLE_MASK | - FD_DIRTY_PROG | - FD_DIRTY_CONSTBUF | - FD_DIRTY_BLEND | - FD_DIRTY_FRAMEBUFFER; - if (fd_mesa_debug & FD_DBG_DCLEAR) fd_context_all_dirty(ctx); } |