aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-11-29 19:27:33 -0800
committerChris Robinson <[email protected]>2010-11-29 19:27:33 -0800
commite4869b447c7594abc63a3b870e3d5ee6570dc23f (patch)
tree493702c6c9978346b19daf78d537996f986d5cbb /OpenAL32/Include
parent547f35613122b5583e24fd182c38d47b3a154354 (diff)
Store the decomposed source format in the buffer
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alBuffer.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h
index 870014b4..0bfd9eff 100644
--- a/OpenAL32/Include/alBuffer.h
+++ b/OpenAL32/Include/alBuffer.h
@@ -75,9 +75,10 @@ typedef struct ALbuffer
enum FmtChannels FmtChannels;
enum FmtType FmtType;
- ALenum OriginalFormat;
- ALsizei OriginalSize;
- ALsizei OriginalAlign;
+ enum SrcFmtChannels OriginalChannels;
+ enum SrcFmtType OriginalType;
+ ALsizei OriginalSize;
+ ALsizei OriginalAlign;
ALsizei LoopStart;
ALsizei LoopEnd;