|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jouvieje.fmodex.utils.Pointer
org.jouvieje.fmodex.structures.FMOD_DSP_STATE
Constructor Summary | |
FMOD_DSP_STATE()
Create an object that holds a null FMOD_DSP_STATE . |
Method Summary | |
static FMOD_DSP_STATE |
allocate()
Allocate a new FMOD_DSP_STATE . |
static FMOD_DSP_STATE |
asFMOD_DSP_STATE(Pointer pointer)
Create a view of the Pointer object as a FMOD_DSP_STATE object. |
DSP |
getInstance()
[r] Handle to the DSP hand the user created. |
Pointer |
getPluginData()
[w] Plugin writer created data the output author wants to attach to this object. |
short |
getSpeakerMask()
[w] Specifies which speakers the DSP effect is active on |
void |
release()
|
void |
setPluginData(Pointer pluginData)
[w] Plugin writer created data the output author wants to attach to this object. |
void |
setSpeakerMask(short speakerMask)
[w] Specifies which speakers the DSP effect is active on |
Methods inherited from class org.jouvieje.fmodex.utils.Pointer |
asByteBuffer, asDouble, asFloat, asInt, asLong, asPointer, asString, asString, equals, isNull, shareMemory |
Methods inherited from class java.lang.Object |
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FMOD_DSP_STATE()
FMOD_DSP_STATE
.isNull()
on the object created will returns true. FMOD_DSP_STATE obj = new FMOD_DSP_STATE();
(obj == null) <=> false
obj.isNull() <=> true
To creates a new FMOD_DSP_STATE
, use the static "constructor" :
FMOD_DSP_STATE obj = FMOD_DSP_STATE.allocate();
allocate()
Method Detail |
public static FMOD_DSP_STATE asFMOD_DSP_STATE(Pointer pointer)
Pointer
object as a FMOD_DSP_STATE
object.Pointer
holds a FMOD_DSP_STATE object.
public static FMOD_DSP_STATE allocate()
FMOD_DSP_STATE
.isNull()
on the object created will return false. FMOD_DSP_STATE obj = FMOD_DSP_STATE.allocate();
(obj == null) <=> obj.isNull() <=> false
public void release()
public DSP getInstance()
public Pointer getPluginData()
public void setPluginData(Pointer pluginData)
public short getSpeakerMask()
public void setSpeakerMask(short speakerMask)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |