mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01: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>
This commit is contained in:
parent
a5748cb920
commit
00caba4152
1 changed files with 1 additions and 1 deletions
|
|
@ -1089,7 +1089,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