summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2018-01-31 14:27:21 +0100
committerPaul Lemire <paul.lemire@kdab.com>2018-02-02 13:58:37 +0000
commit04afcf1cb9e79697360baa01a97a26815237eba1 (patch)
treeec0bf35f45bbb482626ffd86026bb99d7d662e9e /src/core
parent437a33de9336a5c50711e63dd6dfcd86ad28d5a5 (diff)
SIMD: disable on all x86 platforms
Will be restored to compatible x86 platforms later Change-Id: Ide66dea099690682fd898bd0378b3d5614c40808 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/configure.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/configure.json b/src/core/configure.json
index 871f6bfa4..fc938444a 100644
--- a/src/core/configure.json
+++ b/src/core/configure.json
@@ -86,7 +86,7 @@
"purpose": "Use SSE2 SIMD instructions to accelerate matrix operations",
"autoDetect": "features.sse2",
"enable": "input.qt3d-simd == 'sse2' || input.qt3d-simd == 'avx2'",
- "disable": "input.qt3d-simd == 'no' || (config.win32 && arch.i386)",
+ "disable": "input.qt3d-simd == 'no' || arch.i386",
"output": [ "privateFeature" ]
},
"qt3d-simd-avx2": {
@@ -94,7 +94,7 @@
"purpose": "Use AVX2 SIMD instructions to accelerate matrix operations",
"autoDetect": false,
"enable": "input.qt3d-simd == 'avx2'",
- "disable": "input.qt3d-simd == 'sse2' || input.qt3d-simd == 'no' || (config.win32 && arch.i386)",
+ "disable": "input.qt3d-simd == 'sse2' || input.qt3d-simd == 'no' || arch.i386",
"output": [ "privateFeature" ]
}
},