mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-23 18:06:36 +00:00
Clarify requirements for NEON.
This commit is contained in:
parent
578a47d73d
commit
7ceefc9172
@ -291,6 +291,10 @@ static void process_sinc(rarch_sinc_resampler_t *resamp, float *out_buffer)
|
||||
}
|
||||
#elif defined(HAVE_NEON)
|
||||
|
||||
#if TAPS < 8
|
||||
#error "NEON asm requires at least 8 taps (for now)."
|
||||
#endif
|
||||
|
||||
// Need to make this function pointer as Android doesn't have built-in targets
|
||||
// for NEON and plain ARMv7a.
|
||||
static void (*process_sinc_func)(rarch_sinc_resampler_t *resamp, float *out_buffer);
|
||||
|
Loading…
x
Reference in New Issue
Block a user