Mesa (master): radv: trivial case stmt style fixups

Edward O'Callaghan funfunctor at kemper.freedesktop.org
Wed Oct 12 09:13:58 UTC 2016


Module: Mesa
Branch: master
Commit: cfbf956dfd0ea093135cd4864bf3b5b7508a54b6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cfbf956dfd0ea093135cd4864bf3b5b7508a54b6

Author: Edward O'Callaghan <funfunctor at folklore1984.net>
Date:   Tue Oct 11 11:43:09 2016 +1100

radv: trivial case stmt style fixups

Relocate a 'default:' to the end of a case stmt and fix an
indent issue.

Signed-off-by: Edward O'Callaghan <funfunctor at folklore1984.net>
Reviewed-by: Thomas Helland <thomashelland90 at gmail.com>

---

 src/amd/vulkan/radv_image.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
index 2223c89..0dc364c 100644
--- a/src/amd/vulkan/radv_image.c
+++ b/src/amd/vulkan/radv_image.c
@@ -758,8 +758,6 @@ radv_image_view_init(struct radv_image_view *iview,
 	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);
@@ -768,6 +766,8 @@ radv_image_view_init(struct radv_image_view *iview,
 		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;
@@ -842,7 +842,7 @@ void radv_image_set_optimal_micro_tile_mode(struct radv_device *device,
 			case 16:
                             image->surface.tiling_index[0] = 11;
                             break;
-		default: /* 32, 64 */
+			default: /* 32, 64 */
                             image->surface.tiling_index[0] = 12;
                             break;
 			}




More information about the mesa-commit mailing list