From: Chad Versace Date: Fri, 28 Aug 2015 14:59:59 +0000 (-0700) Subject: vk/image: Don't abort when creating stencil image views X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bff2879abe689fe03d9877d17706ae8c076b65b1;p=mesa.git vk/image: Don't abort when creating stencil image views When creating a stencil image view, log a FINISHME but don't abort. We're sooooo close to having this working. --- diff --git a/src/vulkan/anv_image.c b/src/vulkan/anv_image.c index 242de52f639..656193f774e 100644 --- a/src/vulkan/anv_image.c +++ b/src/vulkan/anv_image.c @@ -492,7 +492,6 @@ anv_image_get_surface_for_aspect(struct anv_image *image, VkImageAspect aspect) case VK_IMAGE_ASPECT_STENCIL: assert(image->format->has_stencil); anv_finishme("stencil image views"); - abort(); return &image->stencil_surface; default: unreachable("image does not have aspect");