Skip to content

Commit

Permalink
Always enable SSE2 resample
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Feb 22, 2022
1 parent 7cb51cc commit 0220147
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ResampleImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ void TVPResampleImage( const tTVPRect &cliprect, tTVPBaseBitmap *dest, const tTV
TVPResampleImageSSE2( clip, func, dest, destrect, src, srcrect, type, typeopt );
} else
#endif
#if defined(_M_IX86) || defined(_M_X64) || defined(_M_AMD64)
#if 1 || defined(_M_IX86) || defined(_M_X64) || defined(_M_AMD64)
TVPResampleImageSSE2( clip, func, dest, destrect, src, srcrect, type, typeopt );
#else
{
Expand Down

0 comments on commit 0220147

Please sign in to comment.