intel: fix wrong format usage
Do not use the view format when filling the surface state.
Fixes dEQP-VK.image.texel_view_compatible.compute.extended.texture.*
Fixes: fb1350c76f ("intel: Add and use helpers for level0 extent")
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
@@ -1388,10 +1388,10 @@ anv_image_fill_surface_state(struct anv_device *device,
|
||||
*/
|
||||
const struct isl_format_layout *fmtl =
|
||||
isl_format_get_layout(surface->isl.format);
|
||||
tmp_surf.format = view.format;
|
||||
tmp_surf.logical_level0_px =
|
||||
isl_surf_get_logical_level0_el(&tmp_surf);
|
||||
tmp_surf.phys_level0_sa = isl_surf_get_phys_level0_el(&tmp_surf);
|
||||
tmp_surf.format = view.format;
|
||||
tile_x_sa /= fmtl->bw;
|
||||
tile_y_sa /= fmtl->bh;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user