fixed VS preprocessor condition to include pmmintrin.h (which is available in VS2008 and later versions, but not in VS2005)
This commit is contained in:
parent
670fff5f42
commit
396aa53e96
@ -109,7 +109,7 @@ CV_INLINE IppiSize ippiSize(int width, int height)
|
||||
#include "emmintrin.h"
|
||||
#define CV_SSE 1
|
||||
#define CV_SSE2 1
|
||||
#if defined __SSE3__ || _MSC_VER >= 1400
|
||||
#if defined __SSE3__ || _MSC_VER >= 1500
|
||||
#include "pmmintrin.h"
|
||||
#define CV_SSE3 1
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user