Skip to content

Commit

Permalink
igl | vulkan | Fix external semaphore issue
Browse files Browse the repository at this point in the history
Summary: Fixed external semaphore parameter.

Reviewed By: pixelperfect3

Differential Revision: D50086025

fbshipit-source-id: 4465143d9f7253d189036d53cc35236dd5bc995d
  • Loading branch information
corporateshark authored and facebook-github-bot committed Oct 9, 2023
1 parent d39f110 commit 6f7d3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/igl/vulkan/VulkanSwapchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ VulkanSwapchain::VulkanSwapchain(const VulkanContext& ctx, uint32_t width, uint3
colorSpaceToString(vkColorSpaceToColorSpace(surfaceFormat_.colorSpace)));

acquireSemaphore_ = std::make_unique<igl::vulkan::VulkanSemaphore>(
ctx_.vf_, device_, "Semaphore: swapchain-acquire");
ctx_.vf_, device_, false, "Semaphore: swapchain-acquire");

IGL_ASSERT_MSG(
ctx.vkSurface_ != VK_NULL_HANDLE,
Expand Down

0 comments on commit 6f7d3ec

Please sign in to comment.