mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
Native: Rename all native files for improved consistency
This commit is contained in:
parent
d7f1e59422
commit
05d5c94990
248 changed files with 7121 additions and 7097 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -220,17 +220,17 @@ namespace juce
|
|||
|
||||
//==============================================================================
|
||||
#if JUCE_USE_SIMD
|
||||
#include "native/juce_fallback_SIMDNativeOps.h"
|
||||
#include "native/juce_SIMDNativeOps_fallback.h"
|
||||
|
||||
// include the correct native file for this build target CPU
|
||||
#if defined(__i386__) || defined(__amd64__) || defined(_M_X64) || defined(_X86_) || defined(_M_IX86)
|
||||
#ifdef __AVX2__
|
||||
#include "native/juce_avx_SIMDNativeOps.h"
|
||||
#include "native/juce_SIMDNativeOps_avx.h"
|
||||
#else
|
||||
#include "native/juce_sse_SIMDNativeOps.h"
|
||||
#include "native/juce_SIMDNativeOps_sse.h"
|
||||
#endif
|
||||
#elif JUCE_ARM
|
||||
#include "native/juce_neon_SIMDNativeOps.h"
|
||||
#include "native/juce_SIMDNativeOps_neon.h"
|
||||
#else
|
||||
#error "SIMD register support not implemented for this platform"
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue