Update to OpenAL 1.20.1.

OpenAL versions beyond 1.20 will require C++ 14 instead of 11, requiring
an update to hxcpp.

This update resolves
https://github.com/kcat/openal-soft/pull/227
This commit is contained in:
Joseph Cloutier
2022-05-13 01:25:52 -04:00
parent f200ecd9ca
commit e027811906
9 changed files with 10257 additions and 2652 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -14,6 +14,9 @@
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA

View File

@@ -14,6 +14,9 @@
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA

View File

@@ -14,6 +14,9 @@
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA

View File

@@ -33,6 +33,9 @@
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA

View File

@@ -18,6 +18,9 @@
/* Define a built-in call indicating an aligned data pointer */
#define ASSUME_ALIGNED(x, y) x
/* Define a restrict macro for non-aliased pointers */
#define RESTRICT __restrict
/* Define if HRTF data is embedded in the library */
#define ALSOFT_EMBED_HRTF_DATA