aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-11-19 09:50:15 -0800
committerChris Robinson <[email protected]>2009-11-19 09:50:15 -0800
commit8d1da6a8ca48469a10614c33e0eadc7e7f1d4f13 (patch)
treebc5856b2a348eb0ed3799f5c5876c7c734f910be /Alc
parentff8e09495d846f303479e75d11ef8b2e2957265f (diff)
Move NextPowerOf2 to alMain.h
Diffstat (limited to 'Alc')
-rw-r--r--Alc/alcEcho.c18
-rw-r--r--Alc/alcReverb.c18
2 files changed, 0 insertions, 36 deletions
diff --git a/Alc/alcEcho.c b/Alc/alcEcho.c
index 359dfbba..66710cc4 100644
--- a/Alc/alcEcho.c
+++ b/Alc/alcEcho.c
@@ -53,24 +53,6 @@ typedef struct ALechoState {
ALfloat history[2];
} ALechoState;
-// Find the next power of 2. Actually, this will return the input value if
-// it is already a power of 2.
-static ALuint NextPowerOf2(ALuint value)
-{
- ALuint powerOf2 = 1;
-
- if(value)
- {
- value--;
- while(value)
- {
- value >>= 1;
- powerOf2 <<= 1;
- }
- }
- return powerOf2;
-}
-
ALvoid EchoDestroy(ALeffectState *effect)
{
ALechoState *state = (ALechoState*)effect;
diff --git a/Alc/alcReverb.c b/Alc/alcReverb.c
index 202e20ae..8a5a1149 100644
--- a/Alc/alcReverb.c
+++ b/Alc/alcReverb.c
@@ -126,24 +126,6 @@ static const ALfloat DECO_MULTIPLIER = 2.0f;
// the maximum early reflection and late reverb delays).
static const ALfloat MASTER_LINE_LENGTH = 0.3f + 0.1f;
-// Find the next power of 2. Actually, this will return the input value if
-// it is already a power of 2.
-static ALuint NextPowerOf2(ALuint value)
-{
- ALuint powerOf2 = 1;
-
- if(value)
- {
- value--;
- while(value)
- {
- value >>= 1;
- powerOf2 <<= 1;
- }
- }
- return powerOf2;
-}
-
static ALuint CalcLengths(ALuint length[13], ALuint frequency)
{
ALuint samples, totalLength, index;