https://bugs.freedesktop.org/show_bug.cgi?id=23144
--- Comment #8 from Michel Dänzer <[email protected]> 2011-01-03 08:08:48 PST --- (In reply to comment #6) > Finally I noticed that there appears to be a bug with rgb32 output when using > certain image widths (I'll try to find an example later). I have not yet been > able to find what causes this. Any help would be appreciated. The below part of your patch incorrectly open-codes the RADEON_ALIGN macro for dstPitch. Using the macro instead might work better. :) + case FOURCC_RGBA32: + srcPitch = width << 2; + dstPitch = ((dst_width << 2) + hw_align) & ~hw_align; + break; -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. _______________________________________________ xorg-driver-ati mailing list [email protected] http://lists.x.org/mailman/listinfo/xorg-driver-ati
