FMOD.DSP.getOutput C# (CSharp) Method

getOutput() public method

public getOutput ( int index, DSP &output, DSPConnection &outputconnection ) : RESULT
index int
output DSP
outputconnection DSPConnection
return RESULT
        public RESULT getOutput                 (int index, out DSP output, out DSPConnection outputconnection)
        {
            output = null;
            outputconnection = null;

            IntPtr dspoutputraw;
            IntPtr dspconnectionraw;
            RESULT result = FMOD_DSP_GetOutput(rawPtr, index, out dspoutputraw, out dspconnectionraw);
            output = new DSP(dspoutputraw);
            outputconnection = new DSPConnection(dspconnectionraw);

            return result;
        }