mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-30 04:28:57 +02:00
VUID-vkCmdBeginRenderPass-initialLayout-00900
This commit is contained in:
parent
c372c88813
commit
9ab3e9f482
1 changed files with 3 additions and 2 deletions
|
|
@ -52,7 +52,8 @@ using VideoCore::Surface::SurfaceType;
|
||||||
const bool has_stencil = surface_type == SurfaceType::DepthStencil ||
|
const bool has_stencil = surface_type == SurfaceType::DepthStencil ||
|
||||||
surface_type == SurfaceType::Stencil;
|
surface_type == SurfaceType::Stencil;
|
||||||
|
|
||||||
// Use optimal layouts for attachments - this allows drivers to optimize tiling and access patterns
|
// Attachments are tracked as GENERAL outside render passes; render-pass begin performs
|
||||||
|
// the transition into attachment-optimal layout for the subpass.
|
||||||
const VkImageLayout attachment_layout = is_depth_stencil
|
const VkImageLayout attachment_layout = is_depth_stencil
|
||||||
? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL
|
? VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL
|
||||||
: VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
: VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
||||||
|
|
@ -67,7 +68,7 @@ using VideoCore::Surface::SurfaceType;
|
||||||
: VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
: VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
||||||
.stencilStoreOp = has_stencil ? VK_ATTACHMENT_STORE_OP_STORE
|
.stencilStoreOp = has_stencil ? VK_ATTACHMENT_STORE_OP_STORE
|
||||||
: VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
: VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
||||||
.initialLayout = attachment_layout,
|
.initialLayout = VK_IMAGE_LAYOUT_GENERAL,
|
||||||
.finalLayout = attachment_layout,
|
.finalLayout = attachment_layout,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue