[Nouveau] [Bug 16911] xserver EXA optimization causes nv31 to crash

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Wed Jul 30 18:21:36 PDT 2008


http://bugs.freedesktop.org/show_bug.cgi?id=16911





--- Comment #2 from Stephane Marchesin <marchesin at icps.u-strasbg.fr>  2008-07-30 18:21:36 PST ---
Michel, I would think the following changes are required

                                                                               
                                 -width = min(pBox[i].x2 - dstX, width * 2);   
                                                                               
            +width = min(pBox[i].x2 - dstX, min(width * 2, tileWidth));

-height = min(pBox[i].y2 - dstY, height * 2);
+height = min(pBox[i].y2 - dstY, min(height * 2, tileHeight));

That doesn't solve our issue though.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the Nouveau mailing list