Mercurial > audio-send
comparison OpenAL32/Include/alListener.h @ 0:f9476ff7637e
initial forking of open-al to create multiple listeners
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 25 Oct 2011 13:02:31 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f9476ff7637e |
---|---|
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 typedef struct ALlistener_struct | |
11 { | |
12 ALfloat Position[3]; | |
13 ALfloat Velocity[3]; | |
14 ALfloat Forward[3]; | |
15 ALfloat Up[3]; | |
16 ALfloat Gain; | |
17 ALfloat MetersPerUnit; | |
18 } ALlistener; | |
19 | |
20 #ifdef __cplusplus | |
21 } | |
22 #endif | |
23 | |
24 #endif |