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

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

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

      @NativeType("ALCboolean") public static boolean alcCloseDevice(@NativeType("ALCdevice const *") 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

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

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

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

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

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

      @NativeType("ALCcontext *") public static long alcGetCurrentContext()
      ALCcontext * alcGetCurrentContext(void)
    • alcGetContextsDevice

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

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

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

      @NativeType("ALCboolean") public static boolean alcIsExtensionPresent(@NativeType("ALCdevice const *") long deviceHandle, @NativeType("ALCchar const *") 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

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

      @NativeType("ALCvoid *") public static long alcGetProcAddress(@NativeType("ALCdevice const *") long deviceHandle, @NativeType("ALchar const *") 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

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

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

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

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

      @NativeType("ALCchar const *") public static @Nullable String alcGetString(@NativeType("ALCdevice *") long deviceHandle, @NativeType("ALCenum") 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

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

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

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

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