Module: Mesa
Branch: 13.0
Commit: 02fd5a19b7be6fe849b39e36d3b6e5f609927d2f
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=02fd5a19b7be6fe849b39e36d3b6e5f609927d2f

Author: Dave Airlie <airl...@redhat.com>
Date:   Mon Nov 28 07:03:11 2016 +0000

radv: fix 3D clears with baseMiplevel

This fixes:
dEQP-VK.api.image_clearing.clear_color_image.3d*

These were hitting an assert as the code wasn't taking the
baseMipLevel into account when minify the image depth.

Reviewed-by: Bas Nieuwenhuizen <b...@basnieuwenhuizen.nl>
Signed-off-by: Dave Airlie <airl...@redhat.com>
Cc: "13.0" <mesa-sta...@lists.freedesktop.org>
(cherry picked from commit 09c0c17bc3609a5f5d3ba1df26820406ff5449bf)

---

 src/amd/vulkan/radv_meta_clear.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_meta_clear.c b/src/amd/vulkan/radv_meta_clear.c
index 7e3e5f4..a347703 100644
--- a/src/amd/vulkan/radv_meta_clear.c
+++ b/src/amd/vulkan/radv_meta_clear.c
@@ -998,7 +998,7 @@ radv_cmd_clear_image(struct radv_cmd_buffer *cmd_buffer,
                const VkImageSubresourceRange *range = &ranges[r];
                for (uint32_t l = 0; l < radv_get_levelCount(image, range); 
++l) {
                        const uint32_t layer_count = image->type == 
VK_IMAGE_TYPE_3D ?
-                               radv_minify(image->extent.depth, l) :
+                               radv_minify(image->extent.depth, 
range->baseMipLevel + l) :
                                radv_get_layerCount(image, range);
                        for (uint32_t s = 0; s < layer_count; ++s) {
                                struct radv_image_view iview;

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to