From: Samuel Pitoiset Date: Wed, 27 Sep 2017 21:09:08 +0000 (+0200) Subject: radv: set image view type when decompressing depth surfaces X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=913bfd42a311d70fba129e7a5b7d6d1cc89954be;p=mesa.git radv: set image view type when decompressing depth surfaces This was missing. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_meta_decompress.c b/src/amd/vulkan/radv_meta_decompress.c index 1395207b839..1a1a5612e2b 100644 --- a/src/amd/vulkan/radv_meta_decompress.c +++ b/src/amd/vulkan/radv_meta_decompress.c @@ -337,6 +337,7 @@ static void radv_process_depth_image_inplace(struct radv_cmd_buffer *cmd_buffer, &(VkImageViewCreateInfo) { .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO, .image = radv_image_to_handle(image), + .viewType = radv_meta_get_view_type(image), .format = image->vk_format, .subresourceRange = { .aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT,