mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-23 23:48:18 +02:00
zink: only try to create srgb mutable images if the vk format is supported
otherwise this is just a regular single-format image cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23626>
This commit is contained in:
parent
0d52acce1e
commit
8f56228ace
1 changed files with 11 additions and 6 deletions
|
|
@ -741,14 +741,19 @@ resource_object_create(struct zink_screen *screen, const struct pipe_resource *t
|
|||
VkFormat formats[2];
|
||||
VkImageFormatListCreateInfo format_list;
|
||||
if (srgb) {
|
||||
format_list.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO;
|
||||
format_list.pNext = NULL;
|
||||
format_list.viewFormatCount = 2;
|
||||
format_list.pViewFormats = formats;
|
||||
|
||||
formats[0] = zink_get_format(screen, templ->format);
|
||||
formats[1] = zink_get_format(screen, srgb);
|
||||
ici.pNext = &format_list;
|
||||
/* only use format list if both formats have supported vk equivalents */
|
||||
if (formats[0] && formats[1]) {
|
||||
format_list.sType = VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO;
|
||||
format_list.pNext = NULL;
|
||||
format_list.viewFormatCount = 2;
|
||||
format_list.pViewFormats = formats;
|
||||
|
||||
ici.pNext = &format_list;
|
||||
} else {
|
||||
ici.pNext = NULL;
|
||||
}
|
||||
} else {
|
||||
ici.pNext = NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue