mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
freedreno/a6xx: Fix VS const packet size
Need to account for the PKT7 header. Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17341>
This commit is contained in:
parent
b63cc83f6a
commit
bbcd04922f
1 changed files with 1 additions and 1 deletions
|
|
@ -301,7 +301,7 @@ fd6_build_vs_driver_params(struct fd6_emit *emit)
|
|||
|
||||
if (vs->need_driver_params) {
|
||||
struct fd_ringbuffer *dpconstobj = fd_submit_new_ringbuffer(
|
||||
ctx->batch->submit, IR3_DP_VS_COUNT * 4, FD_RINGBUFFER_STREAMING);
|
||||
ctx->batch->submit, (4 + IR3_DP_VS_COUNT) * 4, FD_RINGBUFFER_STREAMING);
|
||||
ir3_emit_vs_driver_params(vs, dpconstobj, ctx, emit->info, emit->indirect,
|
||||
emit->draw);
|
||||
fd6_ctx->has_dp_state = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue