repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add an option for duplicating stereo sources on the back speakers
[openal-soft.git]
/
OpenAL32
/
Include
/
alu.h
blob
6fab1fae31427edbfc4c687e2a22ff871e6ea561
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