summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/ioctl_wrappers.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c
index 95bc5e26..eabf3ee3 100644
--- a/lib/ioctl_wrappers.c
+++ b/lib/ioctl_wrappers.c
@@ -158,6 +158,9 @@ int __gem_set_tiling(int fd, uint32_t handle, uint32_t tiling, uint32_t stride)
igt_require_intel(fd);
+ if (tiling == I915_TILING_Yf || tiling == I915_TILING_Ys)
+ tiling = I915_TILING_Y;
+
memset(&st, 0, sizeof(st));
do {
st.handle = handle;