« Return to Thread: Maximum Auxiliary Effect Slots

Re: Maximum Auxiliary Effect Slots

by Jason Daly :: Rate this Message:

Reply to Author | View in Thread

Richard Rosario wrote:
>
> Greetings to you,
>                           In my OpenAL implementation when I try to
> create Auxiliary Effect Slots only two are getting created and the
> third one fails returning error.
>
> Is there any maximum limit to the number of Auxiliary Effect Slots.

Yes there is.


> If that is so how do I get the maximum count.

alcGetIntegerv(contextID, ALC_MAX_AUXILIARY_SENDS, &max);

(call this after creating your context)


>
> Is the count based on per source basis or maximum for a device?

It's a context property, but the value you get is a per-source maximum.

Look at the Effects Extension Guide in Creative's OpenAL SDK for better
descriptions and some sample code.

--"J"

_______________________________________________
Openal-devel mailing list
Openal-devel@...
http://opensource.creative.com/mailman/listinfo/openal-devel

 « Return to Thread: Maximum Auxiliary Effect Slots