summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/intel/intel_tex_layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_tex_layout.c')
-rw-r--r--src/mesa/drivers/dri/intel/intel_tex_layout.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex_layout.c b/src/mesa/drivers/dri/intel/intel_tex_layout.c
index b8be7ef41a..2c1b722b7f 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_layout.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_layout.c
@@ -88,11 +88,6 @@ void i945_miptree_layout_2d( struct intel_context *intel,
if (mip1_width > mt->pitch) {
mt->pitch = mip1_width;
-
- if (tiling == I915_TILING_X)
- mt->pitch = ALIGN(mt->pitch * mt->cpp, 512) / mt->cpp;
- if (tiling == I915_TILING_Y)
- mt->pitch = ALIGN(mt->pitch * mt->cpp, 128) / mt->cpp;
}
}