summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2016-06-24 15:37:34 -0700
committerNanley Chery <nanley.g.chery@intel.com>2016-07-15 10:35:40 -0700
commit00caba4152fd85492d1eb3306ae6890b3f9e90b2 (patch)
tree280ad2a9e3ee440c59e856becdceb62eceef528c
parenta5748cb9204f872cbaa6764b95a33ef20c4dd5da (diff)
downloadexternal_mesa3d-00caba4152fd85492d1eb3306ae6890b3f9e90b2.zip
external_mesa3d-00caba4152fd85492d1eb3306ae6890b3f9e90b2.tar.gz
external_mesa3d-00caba4152fd85492d1eb3306ae6890b3f9e90b2.tar.bz2
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>
-rw-r--r--src/intel/isl/isl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h
index b5884be..eacc09f 100644
--- a/src/intel/isl/isl.h
+++ b/src/intel/isl/isl.h
@@ -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