Revert "i965: Disable texture tiling by default."
authorEric Anholt <eric@anholt.net>
Sat, 8 Aug 2009 01:29:56 +0000 (18:29 -0700)
committerEric Anholt <eric@anholt.net>
Sat, 8 Aug 2009 01:33:08 +0000 (18:33 -0700)
This reverts commit b8e638d4895d2d342306bb6443a455f73903ce20.

Now that the known hangs and misrendering issues are fixed, I'm ready to
start encouraging it by default again.

src/mesa/drivers/dri/intel/intel_screen.c

index 14cc815..1b8c56e 100644 (file)
@@ -69,7 +69,11 @@ PUBLIC const char __driConfigOptions[] =
         DRI_CONF_DESC_END
       DRI_CONF_OPT_END
 
-      DRI_CONF_TEXTURE_TILING(false)
+#ifdef I915
+     DRI_CONF_TEXTURE_TILING(false)
+#else
+     DRI_CONF_TEXTURE_TILING(true)
+#endif
 
       DRI_CONF_OPT_BEGIN(early_z, bool, false)
         DRI_CONF_DESC(en, "Enable early Z in classic mode (unstable, 945-only).")