Module: Mesa Branch: master Commit: 9c009da208b77496011f149fd1e289656da0f226 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9c009da208b77496011f149fd1e289656da0f226
Author: Jason Ekstrand <[email protected]> Date: Wed Apr 22 21:18:03 2020 -0500 anv: Drop an assert Ever since Vulkan 1.2, this feature has been in core so enabling the extension is no longer required. Fixes: 4ef3f7e3d37e "anv: Enable Vulkan 1.2 support" Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4694> --- src/intel/vulkan/anv_device.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index caa622d5f4e..7d5b3a2a839 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -4299,7 +4299,6 @@ VkResult anv_CreateFramebuffer( } framebuffer->attachment_count = pCreateInfo->attachmentCount; } else { - assert(device->enabled_extensions.KHR_imageless_framebuffer); framebuffer = vk_alloc2(&device->alloc, pAllocator, size, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT); if (framebuffer == NULL) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
