repo.or.cz
/
openal-soft
/
openal-hmr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update pulse capture ring buffer in 25ms chunks
[openal-soft/openal-hmr.git]
/
OpenAL32
/
Include
/
alListener.h
blob
d22261fa22ece4175490569fd88297707dcaa3ca
1
#ifndef _AL_LISTENER_H_
2
#define _AL_LISTENER_H_
3
4
#include
"AL/al.h"
5
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
10
#define AL_METERS_PER_UNIT 0x20004
11
12
typedef
struct
ALlistener_struct
13
{
14
ALfloat Position
[
3
];
15
ALfloat Velocity
[
3
];
16
ALfloat Forward
[
3
];
17
ALfloat Up
[
3
];
18
ALfloat Gain
;
19
ALfloat MetersPerUnit
;
20
}
ALlistener
;
21
22
#ifdef __cplusplus
23
}
24
#endif
25
26
#endif