Re-enable intrinsic blitters

This commit is contained in:
Isaac Aronson 2024-06-08 22:24:13 -05:00 committed by Sam Lantinga
parent b34faf732d
commit 44d397282d
1 changed files with 1 additions and 0 deletions

View File

@ -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;