Class ALC10

java.lang.Object
org.lwjgl.openal.ALC10
Direct Known Subclasses:
ALC11

public class ALC10 extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static boolean
    alcCloseDevice(long deviceHandle)
    ALCboolean alcCloseDevice(ALCdevice const * deviceHandle)
    static long
    alcCreateContext(long deviceHandle, int @Nullable [] attrList)
    ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    static long
    alcCreateContext(long deviceHandle, @Nullable IntBuffer attrList)
    ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    static void
    alcDestroyContext(long context)
    ALCvoid alcDestroyContext(ALCcontext * context)
    static long
    alcGetContextsDevice(long context)
    ALCdevice * alcGetContextsDevice(ALCcontext * context)
    static long
    ALCcontext * alcGetCurrentContext(void)
    static int
    alcGetEnumValue(long deviceHandle, CharSequence enumName)
    ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    static int
    alcGetEnumValue(long deviceHandle, ByteBuffer enumName)
    ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    static int
    alcGetError(long deviceHandle)
    ALCenum alcGetError(ALCdevice * deviceHandle)
    static int
    alcGetInteger(long deviceHandle, int token)
    ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    static void
    alcGetIntegerv(long deviceHandle, int token, int[] dest)
    ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    static void
    alcGetIntegerv(long deviceHandle, int token, IntBuffer dest)
    ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    static long
    alcGetProcAddress(long deviceHandle, CharSequence funcName)
    ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    static long
    alcGetProcAddress(long deviceHandle, ByteBuffer funcName)
    ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    static @Nullable String
    alcGetString(long deviceHandle, int token)
    ALCchar const * alcGetString(ALCdevice * deviceHandle, ALCenum token)
    static boolean
    alcIsExtensionPresent(long deviceHandle, CharSequence extName)
    ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    static boolean
    alcIsExtensionPresent(long deviceHandle, ByteBuffer extName)
    ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    static boolean
    alcMakeContextCurrent(long context)
    ALCboolean alcMakeContextCurrent(ALCcontext * context)
    static long
    alcOpenDevice(@Nullable CharSequence deviceSpecifier)
    ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)
    static long
    alcOpenDevice(@Nullable ByteBuffer deviceSpecifier)
    ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)
    static void
    alcProcessContext(long context)
    ALCvoid alcProcessContext(ALCcontext * context)
    static void
    alcSuspendContext(long context)
    ALCvoid alcSuspendContext(ALCcontext * context)
    static long
    nalcCreateContext(long deviceHandle, long attrList)
    ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    static int
    nalcGetEnumValue(long deviceHandle, long enumName)
    ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    static void
    nalcGetIntegerv(long deviceHandle, int token, int size, long dest)
    ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    static long
    nalcGetProcAddress(long deviceHandle, long funcName)
    ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    static long
    nalcGetString(long deviceHandle, int token)
    ALCchar const * alcGetString(ALCdevice * deviceHandle, ALCenum token)
    static boolean
    nalcIsExtensionPresent(long deviceHandle, long extName)
    ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    static long
    nalcOpenDevice(long deviceSpecifier)
    ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Method Details

    • nalcOpenDevice

      public static long nalcOpenDevice(long deviceSpecifier)
      ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)
    • alcOpenDevice

      public static long alcOpenDevice(@Nullable ByteBuffer deviceSpecifier)
      ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)
    • alcOpenDevice

      public static long alcOpenDevice(@Nullable CharSequence deviceSpecifier)
      ALCdevice * alcOpenDevice(ALCchar const * deviceSpecifier)
    • alcCloseDevice

      public static boolean alcCloseDevice(long deviceHandle)
      ALCboolean alcCloseDevice(ALCdevice const * deviceHandle)
    • nalcCreateContext

      public static long nalcCreateContext(long deviceHandle, long attrList)
      ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    • alcCreateContext

      public static long alcCreateContext(long deviceHandle, @Nullable IntBuffer attrList)
      ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    • alcMakeContextCurrent

      public static boolean alcMakeContextCurrent(long context)
      ALCboolean alcMakeContextCurrent(ALCcontext * context)
    • alcProcessContext

      public static void alcProcessContext(long context)
      ALCvoid alcProcessContext(ALCcontext * context)
    • alcSuspendContext

      public static void alcSuspendContext(long context)
      ALCvoid alcSuspendContext(ALCcontext * context)
    • alcDestroyContext

      public static void alcDestroyContext(long context)
      ALCvoid alcDestroyContext(ALCcontext * context)
    • alcGetCurrentContext

      public static long alcGetCurrentContext()
      ALCcontext * alcGetCurrentContext(void)
    • alcGetContextsDevice

      public static long alcGetContextsDevice(long context)
      ALCdevice * alcGetContextsDevice(ALCcontext * context)
    • nalcIsExtensionPresent

      public static boolean nalcIsExtensionPresent(long deviceHandle, long extName)
      ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    • alcIsExtensionPresent

      public static boolean alcIsExtensionPresent(long deviceHandle, ByteBuffer extName)
      ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    • alcIsExtensionPresent

      public static boolean alcIsExtensionPresent(long deviceHandle, CharSequence extName)
      ALCboolean alcIsExtensionPresent(ALCdevice const * deviceHandle, ALCchar const * extName)
    • nalcGetProcAddress

      public static long nalcGetProcAddress(long deviceHandle, long funcName)
      ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    • alcGetProcAddress

      public static long alcGetProcAddress(long deviceHandle, ByteBuffer funcName)
      ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    • alcGetProcAddress

      public static long alcGetProcAddress(long deviceHandle, CharSequence funcName)
      ALCvoid * alcGetProcAddress(ALCdevice const * deviceHandle, ALchar const * funcName)
    • nalcGetEnumValue

      public static int nalcGetEnumValue(long deviceHandle, long enumName)
      ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    • alcGetEnumValue

      public static int alcGetEnumValue(long deviceHandle, ByteBuffer enumName)
      ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    • alcGetEnumValue

      public static int alcGetEnumValue(long deviceHandle, CharSequence enumName)
      ALCenum alcGetEnumValue(ALCdevice const * deviceHandle, ALCchar const * enumName)
    • alcGetError

      public static int alcGetError(long deviceHandle)
      ALCenum alcGetError(ALCdevice * deviceHandle)
    • nalcGetString

      public static long nalcGetString(long deviceHandle, int token)
      ALCchar const * alcGetString(ALCdevice * deviceHandle, ALCenum token)
    • alcGetString

      public static @Nullable String alcGetString(long deviceHandle, int token)
      ALCchar const * alcGetString(ALCdevice * deviceHandle, ALCenum token)
    • nalcGetIntegerv

      public static void nalcGetIntegerv(long deviceHandle, int token, int size, long dest)
      ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    • alcGetIntegerv

      public static void alcGetIntegerv(long deviceHandle, int token, IntBuffer dest)
      ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    • alcGetInteger

      public static int alcGetInteger(long deviceHandle, int token)
      ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)
    • alcCreateContext

      public static long alcCreateContext(long deviceHandle, int @Nullable [] attrList)
      ALCcontext * alcCreateContext(ALCdevice const * deviceHandle, ALCint const * attrList)
    • alcGetIntegerv

      public static void alcGetIntegerv(long deviceHandle, int token, int[] dest)
      ALCvoid alcGetIntegerv(ALCdevice * deviceHandle, ALCenum token, ALCsizei size, ALCint * dest)