aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-02-21 16:54:55 -0800
committerChris Robinson <[email protected]>2017-02-21 16:54:55 -0800
commitd3cc867bd42759cb8e294d691354187984f96ff4 (patch)
tree3898ba30214046d880c92470ebd43247ac00d2d4 /OpenAL32/Include/alSource.h
parent864d5387dda119d9faecfd62226b62f1a8af8532 (diff)
Increase the default effect slot and send count
The default number of auxiliary effect slots is now 64. This can still be raised by the config file without a hard maximum, but incurs processing cost for each effect slot generated by the app. The default number of source sends is now actually 2, as per the EFX docs. However, it can be raised up to 16 via ALC_MAX_AUXILIARY_SENDS attribute requests, rather than the previous 4.
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r--OpenAL32/Include/alSource.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 72b05fc8..8889ed24 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -1,7 +1,8 @@
#ifndef _AL_SOURCE_H_
#define _AL_SOURCE_H_
-#define MAX_SENDS 4
+#define MAX_SENDS 16
+#define DEFAULT_SENDS 2
#include "alMain.h"
#include "alu.h"