aboutsummaryrefslogtreecommitdiffstats
path: root/include/AL
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-06-16 10:52:17 -0700
committerChris Robinson <[email protected]>2011-06-16 10:52:17 -0700
commit357f841e88df69b29118e2ee6d84fe56c786a610 (patch)
treef89b6d851c9d6d6f31ae4009ab3081be2c308df7 /include/AL
parent7d73ac440552babe27395a7985ff3f693303c61b (diff)
Fix namespacing of EFX filter property values
Diffstat (limited to 'include/AL')
-rw-r--r--include/AL/efx.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/include/AL/efx.h b/include/AL/efx.h
index 0ccef95d..6dcadff3 100644
--- a/include/AL/efx.h
+++ b/include/AL/efx.h
@@ -279,35 +279,35 @@ AL_API ALvoid AL_APIENTRY alGetAuxiliaryEffectSlotfv(ALuint effectslot, ALenum p
/* Filter ranges and defaults. */
/* Lowpass filter */
-#define LOWPASS_MIN_GAIN (0.0f)
-#define LOWPASS_MAX_GAIN (1.0f)
-#define LOWPASS_DEFAULT_GAIN (1.0f)
+#define AL_LOWPASS_MIN_GAIN (0.0f)
+#define AL_LOWPASS_MAX_GAIN (1.0f)
+#define AL_LOWPASS_DEFAULT_GAIN (1.0f)
-#define LOWPASS_MIN_GAINHF (0.0f)
-#define LOWPASS_MAX_GAINHF (1.0f)
-#define LOWPASS_DEFAULT_GAINHF (1.0f)
+#define AL_LOWPASS_MIN_GAINHF (0.0f)
+#define AL_LOWPASS_MAX_GAINHF (1.0f)
+#define AL_LOWPASS_DEFAULT_GAINHF (1.0f)
/* Highpass filter */
-#define HIGHPASS_MIN_GAIN (0.0f)
-#define HIGHPASS_MAX_GAIN (1.0f)
-#define HIGHPASS_DEFAULT_GAIN (1.0f)
+#define AL_HIGHPASS_MIN_GAIN (0.0f)
+#define AL_HIGHPASS_MAX_GAIN (1.0f)
+#define AL_HIGHPASS_DEFAULT_GAIN (1.0f)
-#define HIGHPASS_MIN_GAINLF (0.0f)
-#define HIGHPASS_MAX_GAINLF (1.0f)
-#define HIGHPASS_DEFAULT_GAINLF (1.0f)
+#define AL_HIGHPASS_MIN_GAINLF (0.0f)
+#define AL_HIGHPASS_MAX_GAINLF (1.0f)
+#define AL_HIGHPASS_DEFAULT_GAINLF (1.0f)
/* Bandpass filter */
-#define BANDPASS_MIN_GAIN (0.0f)
-#define BANDPASS_MAX_GAIN (1.0f)
-#define BANDPASS_DEFAULT_GAIN (1.0f)
+#define AL_BANDPASS_MIN_GAIN (0.0f)
+#define AL_BANDPASS_MAX_GAIN (1.0f)
+#define AL_BANDPASS_DEFAULT_GAIN (1.0f)
-#define BANDPASS_MIN_GAINHF (0.0f)
-#define BANDPASS_MAX_GAINHF (1.0f)
-#define BANDPASS_DEFAULT_GAINHF (1.0f)
+#define AL_BANDPASS_MIN_GAINHF (0.0f)
+#define AL_BANDPASS_MAX_GAINHF (1.0f)
+#define AL_BANDPASS_DEFAULT_GAINHF (1.0f)
-#define BANDPASS_MIN_GAINLF (0.0f)
-#define BANDPASS_MAX_GAINLF (1.0f)
-#define BANDPASS_DEFAULT_GAINLF (1.0f)
+#define AL_BANDPASS_MIN_GAINLF (0.0f)
+#define AL_BANDPASS_MAX_GAINLF (1.0f)
+#define AL_BANDPASS_DEFAULT_GAINLF (1.0f)
/* Effect parameter ranges and defaults. */