summaryrefslogtreecommitdiff
path: root/src/i915_render.c
diff options
context:
space:
mode:
authorJesse Barnes <jesse.barnes@intel.com>2007-07-06 16:10:52 -0700
committerJesse Barnes <jesse.barnes@intel.com>2007-07-06 16:10:52 -0700
commitca593a5219549df94a6d234ebbcf9e7c44723c9b (patch)
treeadc394d8f2005d975abb43b5aeaa038773ca5d54 /src/i915_render.c
parent8798ef11321ee6957919279076758d47ad956cf3 (diff)
FBC and tiling changes
- change framebuffer option name to "FramebufferCompression" - add new "Tiling" option (controls all tiling, not just front buffer) - add debug message to fb compression enable/disable routines - update man page with new options
Diffstat (limited to 'src/i915_render.c')
-rw-r--r--src/i915_render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i915_render.c b/src/i915_render.c
index b2dacfe7..2148883a 100644
--- a/src/i915_render.c
+++ b/src/i915_render.c
@@ -287,7 +287,7 @@ i915_texture_setup(PicturePtr pPict, PixmapPtr pPix, int unit)
pI830->mapstate[unit * 3 + 1] = format |
((pPix->drawable.height - 1) << MS3_HEIGHT_SHIFT) |
((pPix->drawable.width - 1) << MS3_WIDTH_SHIFT);
- if (!pI830->disableTiling)
+ if (pI830->tiling)
pI830->samplerstate[unit * 3 + 1] |= MS3_USE_FENCE_REGS;
pI830->mapstate[unit * 3 + 2] = ((pitch / 4) - 1) << MS4_PITCH_SHIFT;