mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
isl: Fix isl_tiling_is_any_y()
Cc: 12.0 <mesa-stable@lists.freedesktop.org>
Signed-off-by: Nanley Chery <nanley.g.chery@intel.com>
Reviewed-by: Chad Versace <chad.versace@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
(cherry picked from commit 00caba4152)
This commit is contained in:
parent
826117a1c4
commit
60e41ca10a
1 changed files with 1 additions and 1 deletions
|
|
@ -989,7 +989,7 @@ isl_has_matching_typed_storage_image_format(const struct brw_device_info *devinf
|
|||
static inline bool
|
||||
isl_tiling_is_any_y(enum isl_tiling tiling)
|
||||
{
|
||||
return (1u << tiling) & ISL_TILING_ANY_MASK;
|
||||
return (1u << tiling) & ISL_TILING_ANY_Y_MASK;
|
||||
}
|
||||
|
||||
static inline bool
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue