diff options
author | Chris Robinson <[email protected]> | 2011-08-29 23:05:47 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-29 23:10:02 -0700 |
commit | cc67f4589256efceb17c58673159b3e687ec0436 (patch) | |
tree | fe7c3688ac00bdb6ee0fc9766216ab4b9f9144b8 /OpenAL32/Include | |
parent | c6a110ec59c794f08446bd8bb9d90958903984c9 (diff) |
Use the reference counting functions for the buffer and auxiliary slot refs
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alAuxEffectSlot.h | 2 | ||||
-rw-r--r-- | OpenAL32/Include/alBuffer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h index ac71c4ec..5fcfce7d 100644 --- a/OpenAL32/Include/alAuxEffectSlot.h +++ b/OpenAL32/Include/alAuxEffectSlot.h @@ -26,7 +26,7 @@ typedef struct ALeffectslot ALfloat ClickRemoval[1]; ALfloat PendingClicks[1]; - ALuint refcount; + RefCount ref; // Index to itself ALuint effectslot; diff --git a/OpenAL32/Include/alBuffer.h b/OpenAL32/Include/alBuffer.h index 12feee5d..8e18732a 100644 --- a/OpenAL32/Include/alBuffer.h +++ b/OpenAL32/Include/alBuffer.h @@ -85,7 +85,7 @@ typedef struct ALbuffer ALsizei LoopStart; ALsizei LoopEnd; - ALuint refcount; // Number of sources using this buffer (deletion can only occur when this is 0) + RefCount ref; // Number of sources using this buffer (deletion can only occur when this is 0) // Index to itself ALuint buffer; |