freedreno/a6xx: Remove unused field

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19400>
This commit is contained in:
Rob Clark
2022-10-31 11:39:58 -07:00
committed by Marge Bot
parent 5c5e4238ff
commit 46f84ce20a
2 changed files with 0 additions and 7 deletions
@@ -79,9 +79,6 @@ struct fd6_context {
/* Is there current VS driver-param state set? */
bool has_dp_state;
/* number of active samples-passed queries: */
int samples_passed_queries;
/* cached stateobjs to avoid hashtable lookup when not dirty: */
const struct fd6_program_state *prog;
@@ -71,8 +71,6 @@ occlusion_resume(struct fd_acc_query *aq, struct fd_batch *batch)
OUT_RELOC(ring, query_sample(aq, start));
fd6_event_write(batch, ring, ZPASS_DONE, false);
fd6_context(batch->ctx)->samples_passed_queries++;
}
static void
@@ -115,8 +113,6 @@ occlusion_pause(struct fd_acc_query *aq, struct fd_batch *batch) assert_dt
OUT_RELOC(epilogue, query_sample(aq, result)); /* srcA */
OUT_RELOC(epilogue, query_sample(aq, stop)); /* srcB */
OUT_RELOC(epilogue, query_sample(aq, start)); /* srcC */
fd6_context(batch->ctx)->samples_passed_queries--;
}
static void