diff --git a/.pick_status.json b/.pick_status.json index af7e423babc..bd2d3cf5c1f 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1754,7 +1754,7 @@ "description": "anv: check cmd_buffer is on a transfer queue more properly", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "17b8b2cffdb07eaf06a309fabcd933886f6e7070", "notes": null diff --git a/src/intel/vulkan/genX_blorp_exec.c b/src/intel/vulkan/genX_blorp_exec.c index 342b197c6f1..c099a8dedfe 100644 --- a/src/intel/vulkan/genX_blorp_exec.c +++ b/src/intel/vulkan/genX_blorp_exec.c @@ -429,7 +429,7 @@ blorp_exec_on_blitter(struct blorp_batch *batch, assert(batch->flags & BLORP_BATCH_USE_BLITTER); struct anv_cmd_buffer *cmd_buffer = batch->driver_batch; - assert(cmd_buffer->queue_family->queueFlags == VK_QUEUE_TRANSFER_BIT); + assert(anv_cmd_buffer_is_blitter_queue(cmd_buffer)); blorp_exec(batch, params); }