1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Native: Rename all native files for improved consistency

This commit is contained in:
Anthony Nicholls 2023-03-23 16:52:11 +00:00 committed by reuk
parent d7f1e59422
commit 05d5c94990
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
248 changed files with 7121 additions and 7097 deletions

View file

@ -81,12 +81,12 @@
#if JUCE_USE_SIMD
#if JUCE_INTEL
#ifdef __AVX2__
#include "native/juce_avx_SIMDNativeOps.cpp"
#include "native/juce_SIMDNativeOps_avx.cpp"
#else
#include "native/juce_sse_SIMDNativeOps.cpp"
#include "native/juce_SIMDNativeOps_sse.cpp"
#endif
#elif JUCE_ARM
#include "native/juce_neon_SIMDNativeOps.cpp"
#include "native/juce_SIMDNativeOps_neon.cpp"
#else
#error "SIMD register support not implemented for this platform"
#endif