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 <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12023>
This commit is contained in:
Jason Ekstrand 2021-07-21 18:06:14 -05:00 committed by Marge Bot
parent 403acd299f
commit 951635dfe7
1 changed files with 1 additions and 3 deletions

View File

@ -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);