summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-06-23 19:31:43 -0700
committerEric Anholt <eric@anholt.net>2009-06-23 19:31:43 -0700
commitb8e638d4895d2d342306bb6443a455f73903ce20 (patch)
treece3ae676eeb86f5302abcd6eeb5ea0cfe60f1ad8
parentb72dea5441e8e9226dabf1826fa3bc129c7bc281 (diff)
i965: Disable texture tiling by default.
I haven't fixed all the regressions yet, and it'll be easy to re-enable when the known problems are fixed.
-rw-r--r--src/mesa/drivers/dri/intel/intel_screen.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_screen.c b/src/mesa/drivers/dri/intel/intel_screen.c
index 70e0980ed6b..5b3fa9ead32 100644
--- a/src/mesa/drivers/dri/intel/intel_screen.c
+++ b/src/mesa/drivers/dri/intel/intel_screen.c
@@ -69,11 +69,7 @@ PUBLIC const char __driConfigOptions[] =
DRI_CONF_DESC_END
DRI_CONF_OPT_END
-#ifdef I915
- DRI_CONF_TEXTURE_TILING(false)
-#else
- DRI_CONF_TEXTURE_TILING(true)
-#endif
+ DRI_CONF_TEXTURE_TILING(false)
DRI_CONF_OPT_BEGIN(early_z, bool, false)
DRI_CONF_DESC(en, "Enable early Z in classic mode (unstable, 945-only).")