summaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2020-04-22 21:18:03 -0500
committerMarge Bot <[email protected]>2020-04-24 11:37:03 +0000
commit9c009da208b77496011f149fd1e289656da0f226 (patch)
treecaf0363ca2fc6d08ccc77c2b045980452c4968b4 /src/intel
parentb520a58cc1434fdc6bf7f9fd9b68c74ebad04ef2 (diff)
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>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/vulkan/anv_device.c1
1 files changed, 0 insertions, 1 deletions
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)