diff --git a/.pick_status.json b/.pick_status.json index c539904d8e1..8bea2d0e4b2 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -499,7 +499,7 @@ "description": "zink: drop mode_changed check from linewidth/depthbias draw updates", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/gallium/drivers/zink/zink_draw.cpp b/src/gallium/drivers/zink/zink_draw.cpp index ff3c74d1e00..8b38499b254 100644 --- a/src/gallium/drivers/zink/zink_draw.cpp +++ b/src/gallium/drivers/zink/zink_draw.cpp @@ -675,7 +675,7 @@ zink_draw(struct pipe_context *pctx, screen->info.have_EXT_line_rasterization && rast_state->base.line_stipple_enable) VKCTX(CmdSetLineStippleEXT)(batch->state->cmdbuf, rast_state->base.line_stipple_factor, rast_state->base.line_stipple_pattern); - if (BATCH_CHANGED || ctx->rast_state_changed || mode_changed) { + if (BATCH_CHANGED || ctx->rast_state_changed) { enum pipe_prim_type reduced_prim = ctx->last_vertex_stage->reduced_prim; if (reduced_prim == PIPE_PRIM_MAX) reduced_prim = u_reduced_prim(mode);