diff options
author | Chad Versace <[email protected]> | 2015-10-06 18:53:29 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-10-06 21:22:18 -0700 |
commit | 3fc2b1f32540ee8c3fa994814b69568c64c74d81 (patch) | |
tree | b264145a92d8ca6e02c122e0cf9e781be4c44f10 /src/vulkan/anv_image.c | |
parent | 44143a1f4658143b8acc4aaf515603f9507442f1 (diff) |
vk: Remove stale finishme for stencil image views
They don't work completely. But they work well enough to satisfy
Crucible.
Diffstat (limited to 'src/vulkan/anv_image.c')
-rw-r--r-- | src/vulkan/anv_image.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vulkan/anv_image.c b/src/vulkan/anv_image.c index b95cadca9e7..2b3c444428f 100644 --- a/src/vulkan/anv_image.c +++ b/src/vulkan/anv_image.c @@ -545,7 +545,6 @@ anv_image_get_surface_for_aspect_mask(struct anv_image *image, VkImageAspectFlag return &image->depth_surface; case VK_IMAGE_ASPECT_STENCIL_BIT: assert(image->format->has_stencil); - anv_finishme("stencil image views"); return &image->stencil_surface; case VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT: /* FINISHME: The Vulkan spec (git a511ba2) requires support for combined |