This commit is contained in:
Turánszki János
2023-11-22 07:19:49 +01:00
parent 8336ce8530
commit a4ae41db89
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6333,7 +6333,7 @@ using namespace vulkan_internal;
{
view_desc.format = VK_FORMAT_R8_UNORM;
}
else if (view_desc.subresourceRange.aspectMask == VK_IMAGE_ASPECT_PLANE_0_BIT)
else if (view_desc.subresourceRange.aspectMask == VK_IMAGE_ASPECT_PLANE_1_BIT)
{
view_desc.format = VK_FORMAT_R8G8_UNORM;
}
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wi::version
// minor features, major updates, breaking compatibility changes
const int minor = 71;
// minor bug fixes, alterations, refactors, updates
const int revision = 349;
const int revision = 350;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);