comparison ext/openal-soft/OpenAL32/Include/alu.h @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 #ifndef _ALU_H_
2 #define _ALU_H_
3
4 #include "AL/al.h"
5 #include "AL/alc.h"
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 extern ALboolean DuplicateStereo;
12
13 __inline ALuint aluBytesFromFormat(ALenum format);
14 __inline ALuint aluChannelsFromFormat(ALenum format);
15 ALvoid aluMixData(ALCcontext *context,ALvoid *buffer,ALsizei size,ALenum format);
16
17 #ifdef __cplusplus
18 }
19 #endif
20
21 #endif
22