From 44d397282db1cee2a184556c8066665b79b42ca0 Mon Sep 17 00:00:00 2001 From: Isaac Aronson Date: Sat, 8 Jun 2024 22:24:13 -0500 Subject: [PATCH] Re-enable intrinsic blitters --- src/video/SDL_blit_A.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video/SDL_blit_A.c b/src/video/SDL_blit_A.c index b512056da5..4a36e5ecd0 100644 --- a/src/video/SDL_blit_A.c +++ b/src/video/SDL_blit_A.c @@ -1152,6 +1152,7 @@ static void BlitNtoNPixelAlpha(SDL_BlitInfo *info) #endif #ifdef SDL_SSE4_1_INTRINSICS + // TODO: Re-enable if (srcbpp == 4 && dstbpp == 4 && width >= 2 && SDL_HasSSE41()) { BlitNtoNPixelAlpha_SSE4_1(info); return;