dungeon_crawler

view prototype/src/audio/openal.h @ 51:d57df51f6b50

- fixed audio panning (listener direction) - particles had no fog - sound sources were not destroyed properly
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 18 Sep 2012 09:40:56 +0300
parents
children
line source
1 #ifndef OPENAL_H_
2 #define OPENAL_H_
4 #ifndef __APPLE__
5 #include <AL/al.h>
6 #include <AL/alc.h>
7 #else
8 #include <OpenAL/al.h>
9 #include <OpenAL/alc.h>
10 #endif
12 #endif /* OPENAL_H_ */