xf86-video-ati: Branch 'evergreen_accel'

Alex Deucher agd5f at kemper.freedesktop.org
Thu Sep 2 21:34:26 PDT 2010


 src/evergreen_textured_videofuncs.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7cc0d3311f23ad569af004e0e4a0e2efbac107e5
Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Fri Sep 3 00:32:27 2010 -0400

    evergreen: fix Xv
    
    VS const buffer offset was wrong.
    
    fixes:
    https://bugs.freedesktop.org/show_bug.cgi?id=29788

diff --git a/src/evergreen_textured_videofuncs.c b/src/evergreen_textured_videofuncs.c
index 7cf7279..a674680 100644
--- a/src/evergreen_textured_videofuncs.c
+++ b/src/evergreen_textured_videofuncs.c
@@ -487,7 +487,7 @@ EVERGREENDisplayTexturedVideo(ScrnInfoPtr pScrn, RADEONPortPrivPtr pPriv)
 
     /* VS alu constants */
     vs_const_conf.bo = accel_state->cbuf.vb_bo;
-    vs_const_conf.const_addr = accel_state->cbuf.vb_mc_addr + accel_state->cbuf.vb_start_op;
+    vs_const_conf.const_addr = accel_state->cbuf.vb_mc_addr + accel_state->cbuf.vb_start_op + 256;
     evergreen_set_alu_consts(pScrn, &vs_const_conf, RADEON_GEM_DOMAIN_GTT);
 
     if (pPriv->vsync) {


More information about the xorg-commit mailing list