Chris Want
|
14b4ed4e8d
|
Jacques patch for initializing m_context as NULL
|
2003-07-01 00:53:26 +00:00 |
|
|
8dcdf3bf0b
|
- replaced #elif with more correct version:
< #elif _WIN32
---
> #elif defined(_WIN32)
|
2003-01-04 18:17:50 +00:00 |
|
|
38e5b5899c
|
- on windows alcGetError() has no arguments. On other platforms it does.
|
2003-01-04 16:46:49 +00:00 |
|
|
e5341714b6
|
Shrunk the hack so it didn't get used in newer versions of OpenAL which
seems to be working.
Kent
(diff follows)
Index: SND_OpenALDevice.cpp
===================================================================
RCS file: /cvs01/blender/source/gameengine/SoundSystem/openal/SND_OpenALDevice.cpp,v
retrieving revision 1.4
diff -u -r1.4 SND_OpenALDevice.cpp
--- SND_OpenALDevice.cpp 2002/11/25 15:29:57 1.4
+++ SND_OpenALDevice.cpp 2002/12/20 19:26:04
@@ -59,7 +59,7 @@
#include <fcntl.h>
/* untill openal gets unified we need this hack for non-windows systems */
-#ifndef WIN32
+#if !defined(WIN32) && !defined(ALC_MAJOR_VERSION)
|
2002-12-20 19:27:39 +00:00 |
|
|
209a2ede2c
|
Last of the config.h mods...
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
added to these files.
Kent
--
mein@cs.umn.edu
|
2002-11-25 15:29:57 +00:00 |
|
|
716caf4d37
|
- ALenum alc_error = alcGetError(); // openal_2.14+
+ ALenum alc_error = alcGetError(NULL); // openal_2.14+
Fix to get it to work with latest version of openal.
Kent
--
mein@cs.umn.edu
|
2002-11-12 15:26:05 +00:00 |
|
Hans Lambermont
|
12315f4d0e
|
Initial revision
|
2002-10-12 11:37:38 +00:00 |
|