xf86-video-intel: src/sna/gen7_render.c

Chris Wilson ickle at kemper.freedesktop.org
Sun Oct 16 11:40:38 PDT 2011


 src/sna/gen7_render.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit b89592b16e373da1fe259ad067f65ba95021dc49
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Sun Oct 16 19:39:14 2011 +0100

    sna/gen7: Add missing tail to 3DSTATE_SBE
    
    I was a few NULs short of the declared amount.
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/sna/gen7_render.c b/src/sna/gen7_render.c
index 30de36f..16c1462 100644
--- a/src/sna/gen7_render.c
+++ b/src/sna/gen7_render.c
@@ -793,8 +793,11 @@ gen7_emit_sf(struct sna *sna, Bool has_mask)
 	OUT_BATCH(0);
 	OUT_BATCH(0);
 	OUT_BATCH(0);
+	OUT_BATCH(0); /* dw8 */
 	OUT_BATCH(0);
-	OUT_BATCH(0); /* DW9 */
+	OUT_BATCH(0);
+	OUT_BATCH(0);
+	OUT_BATCH(0); /* dw12 */
 	OUT_BATCH(0);
 	OUT_BATCH(0);
 }


More information about the xorg-commit mailing list