xf86-video-intel: src/i915_video.c

Haihao Xiang haihao at kemper.freedesktop.org
Mon Jul 27 19:51:11 PDT 2009


 src/i915_video.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 3418c6c16b108e45f67f3c868d28932266f7a0bc
Author: Krzysztof Halasa <khc at pm.waw.pl>
Date:   Tue Jul 28 10:47:44 2009 +0800

    h/v bias in 3DSTATE_DEST_BUFFER_VARIABLES is 4-bits wide
    
    Fixes bug #22370

diff --git a/src/i915_video.c b/src/i915_video.c
index 1ef58ac..3b4247c 100644
--- a/src/i915_video.c
+++ b/src/i915_video.c
@@ -136,8 +136,8 @@ I915DisplayVideoTextured(ScrnInfoPtr pScrn, I830PortPrivPtr pPriv, int id,
       format = COLR_BUF_ARGB8888 | DEPTH_FRMT_24_FIXED_8_OTHER;
 
    OUT_BATCH(LOD_PRECLAMP_OGL |
-	     DSTORG_HORT_BIAS(0x80) |
-	     DSTORG_VERT_BIAS(0x80) |
+	     DSTORG_HORT_BIAS(0x8) |
+	     DSTORG_VERT_BIAS(0x8) |
 	     format);
 
    /* front buffer, pitch, offset */


More information about the xorg-commit mailing list