Skip to content

Commit

Permalink
nv2a/vk: Fix finish queue submission semaphore wait stage
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Jul 24, 2024
1 parent bfd1d90 commit 7b0336c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/xbox/nv2a/pgraph/vk/draw.c
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ void pgraph_vk_finish(PGRAPHState *pg, FinishReason finish_reason)
VK_CHECK(vkEndCommandBuffer(r->aux_command_buffer));
r->in_aux_command_buffer = false;

VkPipelineStageFlags wait_stage = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT;
VkPipelineStageFlags wait_stage = VK_PIPELINE_STAGE_TRANSFER_BIT;
VkSubmitInfo submit_infos[] = {
{
.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO,
Expand Down

0 comments on commit 7b0336c

Please sign in to comment.