Skip to content

Commit

Permalink
Make barrier more explicit.
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed Dec 12, 2024
1 parent 9280bea commit 3379380
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ private void drawFrame(
.setImage(image.image())
.setSrcQueueFamilyIndex(VulkanQueueFamilyIndex.ignored())
.addSrcStageMask(VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT)
.addSrcAccessMask()
.addSrcAccessMask(VK_ACCESS_MEMORY_WRITE_BIT)
.setDstQueueFamilyIndex(VulkanQueueFamilyIndex.ignored())
.addDstStageMask(VK_PIPELINE_STAGE_CLEAR_BIT)
.addDstAccessMask(VK_ACCESS_TRANSFER_WRITE_BIT)
Expand Down

0 comments on commit 3379380

Please sign in to comment.