radv: Fix preamble argument order.
Used the wrong cmdbuffer in the wrong situation. Oops.
Fixes: 915e9178fa ("radv: Split out commandbuffer submission.")
Reviewed-By: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14574>
This commit is contained in:
parent
7adb3c0f7f
commit
79131b6ee6
1 changed files with 1 additions and 1 deletions
|
|
@ -4339,7 +4339,7 @@ radv_queue_submit(struct vk_queue *vqueue, struct vk_queue_submit *submission)
|
|||
|
||||
result =
|
||||
radv_get_preambles(queue, submission->command_buffers, submission->command_buffer_count,
|
||||
&initial_preamble_cs, &initial_flush_preamble_cs, &continue_preamble_cs);
|
||||
&initial_flush_preamble_cs, &initial_preamble_cs, &continue_preamble_cs);
|
||||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue