aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLionel Landwerlin <[email protected]>2018-10-30 23:44:05 +0000
committerLionel Landwerlin <[email protected]>2018-11-13 18:56:27 +0000
commit8b00d3d6ebd3a9e6694a43168a76dc9ce6e8c8a0 (patch)
tree155212fdd21f6959ee01c80ebba2c1a24824db1f
parent465de47bad70404d7003799fcc074568c543062a (diff)
anv: use image aspects rather than computed ones
This shouldn't make any difference but I feel uneasy to use the expanded aspects that do not represent the image in its entirety. If we ever change the implementation of the anv_image_aspect_to_plane() helper, this is safer. Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r--src/intel/vulkan/anv_image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c
index b284ed4b40f..4a0284cf212 100644
--- a/src/intel/vulkan/anv_image.c
+++ b/src/intel/vulkan/anv_image.c
@@ -1321,7 +1321,7 @@ anv_CreateImageView(VkDevice _device,
uint32_t iaspect_bit, vplane = 0;
anv_foreach_image_aspect_bit(iaspect_bit, image, expanded_aspects) {
uint32_t iplane =
- anv_image_aspect_to_plane(expanded_aspects, 1UL << iaspect_bit);
+ anv_image_aspect_to_plane(image->aspects, 1UL << iaspect_bit);
VkImageAspectFlags vplane_aspect =
anv_plane_to_aspect(iview->aspect_mask, vplane);
struct anv_format_plane format =