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
assert(params.format != asset::EF_UNKNOWN); // No feasible supported format found for creating this image
1064
+
assert(newFormat != asset::EF_UNKNOWN); // No feasible supported format found for creating this image
1061
1065
params.format = newFormat;
1062
1066
1067
+
#if0 // TODO: Bump our minimum Vulkan version to 1.2, then implement https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkImageFormatListCreateInfo.html in our API
1068
+
// now add the STORAGE USAGE
1069
+
if (computeMips)
1070
+
{
1071
+
// formats like SRGB etc. can't be stored to
1072
+
params.usage |= asset::IImage::EUF_STORAGE_BIT;
1073
+
// but image views with formats that are store-able can be created
0 commit comments