Relocate a 'default:' to the end of a case stmt and fix an
indent issue.
Signed-off-by: Edward O'Callaghan <funfunctor@folklore1984.net>
Reviewed-by: Thomas Helland <thomashelland90@gmail.com>
const VkImageSubresourceRange *range = &pCreateInfo->subresourceRange;
bool is_stencil = false;
switch (image->type) {
- default:
- unreachable("bad VkImageType");
case VK_IMAGE_TYPE_1D:
case VK_IMAGE_TYPE_2D:
assert(range->baseArrayLayer + radv_get_layerCount(image, range) - 1 <= image->array_size);
assert(range->baseArrayLayer + radv_get_layerCount(image, range) - 1
<= radv_minify(image->extent.depth, range->baseMipLevel));
break;
+ default:
+ unreachable("bad VkImageType");
}
iview->image = image;
iview->bo = image->bo;
case 16:
image->surface.tiling_index[0] = 11;
break;
- default: /* 32, 64 */
+ default: /* 32, 64 */
image->surface.tiling_index[0] = 12;
break;
}