anv_get_isl_format: Support depth+stencil aspect value

You just get the depth format in this case.
This commit is contained in:
Jason Ekstrand
2016-01-01 14:12:22 -08:00
parent a7cc12910d
commit ceb05131da

View File

@@ -246,6 +246,7 @@ anv_get_isl_format(VkFormat format, VkImageAspectFlags aspect,
case VK_IMAGE_ASPECT_COLOR_BIT:
return anv_fmt->surface_format;
case VK_IMAGE_ASPECT_DEPTH_BIT:
case (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT):
assert(anv_fmt->depth_format != 0);
return anv_fmt->surface_format;
case VK_IMAGE_ASPECT_STENCIL_BIT: