You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The validation of access-layout combinations in image memory barriers is too restrictive. In addition to VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL, input attachment access should be allowed for the following layouts:
The validation of access-layout combinations in image memory barriers is too restrictive. In addition to
VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL
, input attachment access should be allowed for the following layouts:VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL
VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL
VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL
VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL
VK_IMAGE_LAYOUT_ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXT
VK_IMAGE_LAYOUT_RENDERING_LOCAL_READ_KHR
Also, some recent layouts like
VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL
andVK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL
were never handled. Could we fix that as well?The text was updated successfully, but these errors were encountered: