vk/image: Remove stale anv_asserts for depthstencil attachments

We don't fully handle mipmapped, array depthstencil attachments. But we
handle the well enough for Crucible's miptree tests.
This commit is contained in:
Chad Versace 2015-10-06 18:18:47 -07:00
parent c272bb58f5
commit d00718104f
1 changed files with 0 additions and 5 deletions

View File

@ -506,11 +506,6 @@ anv_depth_stencil_view_init(struct anv_image_view *iview,
{
ANV_FROM_HANDLE(anv_image, image, pCreateInfo->image);
/* XXX: We don't handle any of these */
anv_assert(pCreateInfo->mipLevel == 0);
anv_assert(pCreateInfo->baseArraySlice == 0);
anv_assert(pCreateInfo->arraySize == 1);
iview->image = image;
iview->format = anv_format_for_vk_format(pCreateInfo->format);