From: Jason Ekstrand Date: Wed, 21 Jul 2021 23:06:14 +0000 (-0500) Subject: anv/image: Use planes[i]->primary_surface.isl.format in check_drm_format_mod X-Git-Tag: upstream/22.3.5~19121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=951635dfe7c90cb0c7d91fcc379d336d46ba2ae6;p=platform%2Fupstream%2Fmesa.git anv/image: Use planes[i]->primary_surface.isl.format in check_drm_format_mod In theory, with linear vs. tiled differences, it could be different (RGBA vs. RGB etc.) but it won't matter for the two checks we do with it. Also, we probably want to be checking the real format here anyway. Reviewed-by: Lionel Landwerlin Part-of: --- diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index da6bbe2..2fcf4da 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -979,10 +979,8 @@ check_drm_format_mod(const struct anv_device *device, for (int i = 0; i < image->n_planes; ++i) { const struct anv_image_plane *plane = &image->planes[i]; - ASSERTED const struct anv_format_plane *plane_format = - &image->format->planes[i]; ASSERTED const struct isl_format_layout *isl_layout = - isl_format_get_layout(plane_format->isl_format); + isl_format_get_layout(plane->primary_surface.isl.format); /* Enforced by us, not the Vulkan spec. */ assert(isl_layout->txc == ISL_TXC_NONE);