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
Don't update the channel format if all JACK ports were allocated
[openal-soft.git]
/
OpenAL32
/
Include
/
alListener.h
blob
42b5a11f9ae597217542e8efd34267b0c22a77e4
1
#ifndef _AL_LISTENER_H_
2
#define _AL_LISTENER_H_
3
4
#include
"alMain.h"
5
#include
"alu.h"
6
7
#ifdef __cplusplus
8
extern
"C"
{
9
#endif
10
11
typedef
struct
ALlistener
{
12
aluVector Position
;
13
aluVector Velocity
;
14
volatile
ALfloat Forward
[
3
];
15
volatile
ALfloat Up
[
3
];
16
volatile
ALfloat Gain
;
17
volatile
ALfloat MetersPerUnit
;
18
19
struct
{
20
aluMatrix Matrix
;
21
aluVector Velocity
;
22
}
Params
;
23
}
ALlistener
;
24
25
#ifdef __cplusplus
26
}
27
#endif
28
29
#endif