Class LwjglEFX

java.lang.Object
com.jme3.audio.lwjgl.LwjglEFX
All Implemented Interfaces:
EFX

public class LwjglEFX extends Object implements EFX
  • Constructor Details Link icon

    • LwjglEFX Link icon

      public LwjglEFX()
  • Method Details Link icon

    • alGenAuxiliaryEffectSlots Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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 Link icon

      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.