mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-30 00:20:59 +00:00
parent
f2198c70e7
commit
53d23a3df2
2 changed files with 239 additions and 58 deletions
20
code/libspeex/include/speex/config.h
Normal file
20
code/libspeex/include/speex/config.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
// Microsoft version of 'inline'
|
||||
#define inline __inline
|
||||
|
||||
// Visual Studio support alloca(), but it always align variables to 16-bit
|
||||
// boundary, while SSE need 128-bit alignment. So we disable alloca() when
|
||||
// SSE is enabled.
|
||||
#ifndef _USE_SSE
|
||||
# define USE_ALLOCA
|
||||
#endif
|
||||
|
||||
/* Default to floating point */
|
||||
#ifndef FIXED_POINT
|
||||
# define FLOATING_POINT
|
||||
# define USE_SMALLFT
|
||||
#else
|
||||
# define USE_KISS_FFT
|
||||
#endif
|
||||
|
||||
/* We don't support visibility on Win32 */
|
||||
#define EXPORT
|
Loading…
Add table
Add a link
Reference in a new issue