diff options
author | Chris Robinson <[email protected]> | 2012-04-24 23:06:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-24 23:06:10 -0700 |
commit | cafbd9461e869d7915268c7c6adf14314bc80138 (patch) | |
tree | d1be0fd1631f52834b5d341c9d4f0b74021ef528 /OpenAL32/alEffect.c | |
parent | 6995ac1ed2c3042f212c9f279de767b70c51a003 (diff) |
Fix up alEffect.c and alFilter.c a bit
Diffstat (limited to 'OpenAL32/alEffect.c')
-rw-r--r-- | OpenAL32/alEffect.c | 66 |
1 files changed, 39 insertions, 27 deletions
diff --git a/OpenAL32/alEffect.c b/OpenAL32/alEffect.c index 974d2657..a2fbbc5f 100644 --- a/OpenAL32/alEffect.c +++ b/OpenAL32/alEffect.c @@ -154,7 +154,9 @@ AL_API ALvoid AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint value) if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { if(param == AL_EFFECT_TYPE) { @@ -178,8 +180,6 @@ AL_API ALvoid AL_APIENTRY alEffecti(ALuint effect, ALenum param, ALint value) ALeffect_SetParami(ALEffect, Context, param, value); } } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -190,17 +190,24 @@ AL_API ALvoid AL_APIENTRY alEffectiv(ALuint effect, ALenum param, const ALint *v ALCdevice *Device; ALeffect *ALEffect; + switch(param) + { + case AL_EFFECT_TYPE: + alEffecti(effect, param, values[0]); + return; + } + Context = GetContextRef(); if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_SetParamiv(ALEffect, Context, param, values); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -215,13 +222,13 @@ AL_API ALvoid AL_APIENTRY alEffectf(ALuint effect, ALenum param, ALfloat value) if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_SetParamf(ALEffect, Context, param, value); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -236,13 +243,13 @@ AL_API ALvoid AL_APIENTRY alEffectfv(ALuint effect, ALenum param, const ALfloat if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_SetParamfv(ALEffect, Context, param, values); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -257,20 +264,18 @@ AL_API ALvoid AL_APIENTRY alGetEffecti(ALuint effect, ALenum param, ALint *value if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { if(param == AL_EFFECT_TYPE) - { *value = ALEffect->type; - } else { /* Call the appropriate handler */ - ALeffect_GetParamiv(ALEffect, Context, param, value); + ALeffect_GetParami(ALEffect, Context, param, value); } } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -281,17 +286,24 @@ AL_API ALvoid AL_APIENTRY alGetEffectiv(ALuint effect, ALenum param, ALint *valu ALCdevice *Device; ALeffect *ALEffect; + switch(param) + { + case AL_EFFECT_TYPE: + alGetEffecti(effect, param, values); + return; + } + Context = GetContextRef(); if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_GetParamiv(ALEffect, Context, param, values); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -306,13 +318,13 @@ AL_API ALvoid AL_APIENTRY alGetEffectf(ALuint effect, ALenum param, ALfloat *val if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_GetParamf(ALEffect, Context, param, value); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } @@ -327,13 +339,13 @@ AL_API ALvoid AL_APIENTRY alGetEffectfv(ALuint effect, ALenum param, ALfloat *va if(!Context) return; Device = Context->Device; - if((ALEffect=LookupEffect(Device, effect)) != NULL) + if((ALEffect=LookupEffect(Device, effect)) == NULL) + alSetError(Context, AL_INVALID_NAME); + else { /* Call the appropriate handler */ ALeffect_GetParamfv(ALEffect, Context, param, values); } - else - alSetError(Context, AL_INVALID_NAME); ALCcontext_DecRef(Context); } |