alSynSetFXParam alSynSetFXParam (function)

alSynSetFXParam, n_alSynSetFXParam

Sets an effect parameter to the specified value

Syntax

#include <libaudio.h>     /* libaudio.h */

void alSynSetFXParam(ALSynth *drvr, ALFxRef fx, s16 paramID, void *param);
#include <n_libaudio.h>     /* n_libaudio.h */

void n_alSynSetFXParam(             ALFxRef fx, s16 paramID, void *param);

Arguments

drvr
Pointer to the synthesizer driver

fx
Pointer to an effect

paramID
ID for the parameter to be modified

param
Pointer to the new parameter value

Description

alSynSetFXParam sets the specified effect parameter to the value specified. The valid parameter range may vary for each effect specified by the ID.

For details on n_audio library, see "Chapter 28: n_audio library" in the N64 Programming Manual.

Note

Call alSynSetFXParam from within ALVoiceHandler only.

See Also

alSynAllocFX, alSynFreeFX, and alSynGetFXRef

Revision History

1999/04/30 Changed Format