aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alSource.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-05-13 02:10:33 -0700
committerChris Robinson <[email protected]>2010-05-13 02:10:33 -0700
commit5d579dd1a80e8bb4e408024f4706faa0d041f91e (patch)
treede3d581d06e71c3eff46cdbeb35aac581e3be88a /OpenAL32/Include/alSource.h
parent0ce138341c73edc1d42158760bb2d402419361dd (diff)
Store loop points as uncompressed frame offsets in the source when a buffer is attached
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r--OpenAL32/Include/alSource.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 0802cbaa..85a73059 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -78,6 +78,10 @@ typedef struct ALsource
ALint lOffset;
ALint lOffsetType;
+ // Only valid for static sources types
+ ALint LoopStart;
+ ALint LoopEnd;
+
// Source Type (Static, Streaming, or Undetermined)
ALint lSourceType;