Mercurial > sdl-ios-xcode
diff src/video/SDL_blit_A.c @ 2086:fffea8d6bf92
Merged r2954:2955 from branches/SDL-1.2: Altivec alpha blitter alignment fix.
Fixes Bugzilla #279.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 12 Feb 2007 10:57:45 +0000 |
parents | 9e6dc39f48b6 |
children | c4e0afbcf1f6 |
line wrap: on
line diff
--- a/src/video/SDL_blit_A.c Thu Feb 08 21:54:18 2007 +0000 +++ b/src/video/SDL_blit_A.c Mon Feb 12 10:57:45 2007 +0000 @@ -1341,7 +1341,7 @@ ONE_PIXEL_BLEND((UNALIGNED_PTR(dstp)) && (width), width); if (width > 0) { int extrawidth = (width % 4); - vector unsigned char valigner = vec_lvsl(0, srcp); + vector unsigned char valigner = VEC_ALIGNER(srcp); vector unsigned char vs = (vector unsigned char) vec_ld(0, srcp); width -= extrawidth; while (width) {