From: Rob Clark Date: Thu, 16 Apr 2020 21:13:39 +0000 (-0700) Subject: freedreno/a6xx: move scissor state to stateobj X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46e177389fee7f5eed90e5debd122bfebb772ad4;p=mesa.git freedreno/a6xx: move scissor state to stateobj To reduce CP overhead for draws skipped in a given tile. Signed-off-by: Rob Clark Part-of: --- diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c index c7be485a8f2..4fab91c2a51 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c @@ -985,8 +985,12 @@ fd6_emit_state(struct fd_ringbuffer *ring, struct fd6_emit *emit) A6XX_RB_STENCILREF_BFREF(sr->ref_value[1])); } - /* NOTE: scissor enabled bit is part of rasterizer state: */ - if (dirty & (FD_DIRTY_SCISSOR | FD_DIRTY_RASTERIZER)) { + /* NOTE: scissor enabled bit is part of rasterizer state, but + * fd_rasterizer_state_bind() will mark scissor dirty if needed: + */ + if (dirty & FD_DIRTY_SCISSOR) { + struct fd_ringbuffer *ring = fd_submit_new_ringbuffer( + emit->ctx->batch->submit, 3*4, FD_RINGBUFFER_STREAMING); struct pipe_scissor_state *scissor = fd_context_get_scissor(ctx); OUT_PKT4(ring, REG_A6XX_GRAS_SC_SCREEN_SCISSOR_TL_0, 2); @@ -995,6 +999,8 @@ fd6_emit_state(struct fd_ringbuffer *ring, struct fd6_emit *emit) OUT_RING(ring, A6XX_GRAS_SC_SCREEN_SCISSOR_TL_0_X(scissor->maxx - 1) | A6XX_GRAS_SC_SCREEN_SCISSOR_TL_0_Y(scissor->maxy - 1)); + fd6_emit_take_group(emit, ring, FD6_GROUP_SCISSOR, ENABLE_ALL); + ctx->batch->max_scissor.minx = MIN2(ctx->batch->max_scissor.minx, scissor->minx); ctx->batch->max_scissor.miny = MIN2(ctx->batch->max_scissor.miny, scissor->miny); ctx->batch->max_scissor.maxx = MAX2(ctx->batch->max_scissor.maxx, scissor->maxx); diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.h b/src/gallium/drivers/freedreno/a6xx/fd6_emit.h index c5e8882f6a9..d0642cb564e 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.h +++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.h @@ -63,6 +63,7 @@ enum fd6_state_id { FD6_GROUP_RASTERIZER, FD6_GROUP_ZSA, FD6_GROUP_BLEND, + FD6_GROUP_SCISSOR, }; #define ENABLE_ALL (CP_SET_DRAW_STATE__0_BINNING | CP_SET_DRAW_STATE__0_GMEM | CP_SET_DRAW_STATE__0_SYSMEM)