Class IosEFX

java.lang.Object
com.jme3.audio.ios.IosEFX
All Implemented Interfaces:
EFX

public class IosEFX extends Object implements EFX
  • Constructor Details

    • IosEFX

      public IosEFX()
  • Method Details

    • alGenAuxiliaryEffectSlots

      public void alGenAuxiliaryEffectSlots(int numSlots, IntBuffer buffers)
      Description copied from interface: EFX
      Requests a number of effect slots.
      Specified by:
      alGenAuxiliaryEffectSlots in interface EFX
      Parameters:
      numSlots - the slots count.
      buffers - the buffer that will receive the effect slots.
    • alGenEffects

      public void alGenEffects(int numEffects, IntBuffer buffers)
      Description copied from interface: EFX
      Requests a number of effects.
      Specified by:
      alGenEffects in interface EFX
      Parameters:
      numEffects - the effects count.
      buffers - the buffer that will receive the effects.
    • alEffecti

      public void alEffecti(int effect, int param, int value)
      Description copied from interface: EFX
      Sets the integer value of an effect parameter.
      Specified by:
      alEffecti in interface EFX
      Parameters:
      effect - the effect to modify.
      param - the parameter to modify.
      value - the parameter value.
    • alAuxiliaryEffectSloti

      public void alAuxiliaryEffectSloti(int effectSlot, int param, int value)
      Description copied from interface: EFX
      Sets the integer value of an effect slot parameter.
      Specified by:
      alAuxiliaryEffectSloti in interface EFX
      Parameters:
      effectSlot - the effect slot to modify.
      param - the parameter to modify.
      value - the parameter value.
    • alDeleteEffects

      public void alDeleteEffects(int numEffects, IntBuffer buffers)
      Description copied from interface: EFX
      Deletes a number of effects.
      Specified by:
      alDeleteEffects in interface EFX
      Parameters:
      numEffects - the effects count.
      buffers - the effect to delete.
    • alDeleteAuxiliaryEffectSlots

      public void alDeleteAuxiliaryEffectSlots(int numEffectSlots, IntBuffer buffers)
      Description copied from interface: EFX
      Deletes a number of effect slots.
      Specified by:
      alDeleteAuxiliaryEffectSlots in interface EFX
      Parameters:
      numEffectSlots - the effect slots count.
      buffers - the effect slots to delete.
    • alGenFilters

      public void alGenFilters(int numFilters, IntBuffer buffers)
      Description copied from interface: EFX
      Requests a number of filters.
      Specified by:
      alGenFilters in interface EFX
      Parameters:
      numFilters - the filters count.
      buffers - the buffer that will receive the filters.
    • alFilteri

      public void alFilteri(int filter, int param, int value)
      Description copied from interface: EFX
      Sets the integer value of a filter parameter.
      Specified by:
      alFilteri in interface EFX
      Parameters:
      filter - the filter to modify.
      param - the parameter to modify.
      value - the parameter value.
    • alFilterf

      public void alFilterf(int filter, int param, float value)
      Description copied from interface: EFX
      Sets the float value of a filter parameter.
      Specified by:
      alFilterf in interface EFX
      Parameters:
      filter - the filter to modify.
      param - the parameter to modify.
      value - the parameter value.
    • alDeleteFilters

      public void alDeleteFilters(int numFilters, IntBuffer buffers)
      Description copied from interface: EFX
      Deletes a number of filters.
      Specified by:
      alDeleteFilters in interface EFX
      Parameters:
      numFilters - the filters count.
      buffers - the filter to delete.
    • alEffectf

      public void alEffectf(int effect, int param, float value)
      Description copied from interface: EFX
      Sets the float value of an effect parameter.
      Specified by:
      alEffectf in interface EFX
      Parameters:
      effect - the effect to modify.
      param - the parameter to modify.
      value - the parameter value.