1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

NEON instruction set enabled for WIN32 on ARM by default.

This commit is contained in:
Alexander Smorkalov
2013-08-04 08:47:42 -07:00
parent ee8687ba19
commit 2243118fc0
2 changed files with 12 additions and 2 deletions
+5 -1
View File
@@ -43,8 +43,12 @@ typedef unsigned __int64 uint64_t;
#include "defines.h"
#if (defined WIN32 || defined _WIN32) && defined(_M_ARM)
# include <Intrin.h>
#endif
#ifdef __ARM_NEON__
#include "arm_neon.h"
# include "arm_neon.h"
#endif
namespace cvflann