From: Jason Ekstrand Date: Thu, 23 Apr 2020 02:18:03 +0000 (-0500) Subject: anv: Drop an assert X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9c009da208b77496011f149fd1e289656da0f226;p=mesa.git 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 Part-of: --- 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)