mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 06:40:08 +01:00
freedreno/a6xx: move scissor state to stateobj
To reduce CP overhead for draws skipped in a given tile. Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4813>
This commit is contained in:
parent
8cfa765049
commit
46e177389f
2 changed files with 9 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue