X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvideo%2FSDL_blit_A.c;h=565879d550ad42b878bcaa103d4004498ef4c9da;hb=bdfa698900e2b6c8601b77004a8ba91f5b30dbb6;hp=5a4cff002a49f8cf089d8b28215034d9f7f9c70d;hpb=21e209de05a7f4712a567eb83d98a887b9c33c20;p=sdl_omap.git diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index 5a4cff0..565879d 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -82,8 +82,29 @@ static void name(SDL_BlitInfo *info) \ } \ } +#define make_neon_callerS(name, neon_name) \ +extern void neon_name(void *dst, const void *src, int count, unsigned int alpha); \ +static void name(SDL_BlitInfo *info) \ +{ \ + int width = info->d_width; \ + int height = info->d_height; \ + Uint8 *src = info->s_pixels; \ + Uint8 *dst = info->d_pixels; \ + int srcskip = info->s_skip; \ + int dstskip = info->d_skip; \ + unsigned alpha = info->src->alpha;\ +\ + while ( height-- ) { \ + neon_name(dst, src, width, alpha); \ + src += width * 4 + srcskip; \ + dst += width * 4 + dstskip; \ + } \ +} + make_neon_caller(BlitABGRtoXRGBalpha_neon, neon_ABGRtoXRGBalpha) make_neon_caller(BlitARGBtoXRGBalpha_neon, neon_ARGBtoXRGBalpha) +make_neon_callerS(BlitABGRtoXRGBalphaS_neon, neon_ABGRtoXRGBalphaS) +make_neon_callerS(BlitARGBtoXRGBalphaS_neon, neon_ARGBtoXRGBalphaS) #endif /* __ARM_NEON__ */ @@ -2831,6 +2852,12 @@ SDL_loblit SDL_CalculateAlphaBlit(SDL_Surface *surface, int blit_index) && sf->Bshift % 8 == 0 && SDL_HasMMX()) return BlitRGBtoRGBSurfaceAlphaMMX; +#endif +#ifdef __ARM_NEON__ + if(sf->Rshift % 8 == 0 + && sf->Gshift % 8 == 0 + && sf->Bshift % 8 == 0) + return BlitARGBtoXRGBalphaS_neon; #endif if((sf->Rmask | sf->Gmask | sf->Bmask) == 0xffffff) {