mirror of
https://gitlab.freedesktop.org/mesa/vulkan-wsi-layer.git
synced 2025-12-25 01:10:14 +01:00
Merge 'VK_EXT_frame_boundary: Fixing the sType used in VkFrameBoundaryEXT' into 'main'
See merge request mesa/vulkan-wsi-layer!202
This commit is contained in:
commit
e1d77594fb
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ std::optional<VkFrameBoundaryEXT> wsi_ext_frame_boundary::handle_frame_boundary_
|
|||
std::optional<VkFrameBoundaryEXT> create_frame_boundary(const VkPresentInfoKHR &present_info)
|
||||
{
|
||||
auto *present_frame_boundary =
|
||||
util::find_extension<VkFrameBoundaryEXT>(VK_STRUCTURE_TYPE_PRESENT_ID_KHR, present_info.pNext);
|
||||
util::find_extension<VkFrameBoundaryEXT>(VK_STRUCTURE_TYPE_FRAME_BOUNDARY_EXT, present_info.pNext);
|
||||
|
||||
/* Extract the VkFrameBoundaryEXT structure to avoid passing other, unrelated structures to vkQueueSubmit */
|
||||
if (present_frame_boundary != nullptr)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue