aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alBuffer.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-01-21 18:34:03 -0800
committerChris Robinson <[email protected]>2018-01-21 18:34:03 -0800
commitdb13af1935f969bb579fca9d79c6600d91c0fe32 (patch)
treed69b0a669a9cf096bd71e90970a0ad8f5d064458 /OpenAL32/Include/alBuffer.h
parentefd11f32a20c8fa06161a42facc5b97180c0c1a5 (diff)
Handle double-precision buffers in the mixer
Diffstat (limited to 'OpenAL32/Include/alBuffer.h')
-rw-r--r--OpenAL32/Include/alBuffer.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h
index 35c880c9..5f1e6826 100644
--- a/OpenAL32/Include/alBuffer.h
+++ b/OpenAL32/Include/alBuffer.h
@@ -40,11 +40,12 @@ inline ALsizei FrameSizeFromUserFmt(enum UserFmtChannels chans, enum UserFmtType
/* Storable formats */
enum FmtType {
- FmtUByte = UserFmtUByte,
- FmtShort = UserFmtShort,
- FmtFloat = UserFmtFloat,
- FmtMulaw = UserFmtMulaw,
- FmtAlaw = UserFmtAlaw,
+ FmtUByte = UserFmtUByte,
+ FmtShort = UserFmtShort,
+ FmtFloat = UserFmtFloat,
+ FmtDouble = UserFmtDouble,
+ FmtMulaw = UserFmtMulaw,
+ FmtAlaw = UserFmtAlaw,
};
enum FmtChannels {
FmtMono = UserFmtMono,