mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-26 10:24:19 +01:00
24 lines
646 B
Java
24 lines
646 B
Java
|
|
package org.lwjgl.openal;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* $Id$
|
||
|
|
*
|
||
|
|
* The base AL functionality (no actual AL methods).
|
||
|
|
*
|
||
|
|
* This has been provided as a base class that we can use for either the
|
||
|
|
* full AL 1.0 specification or as a cut-down OpenAL embedded spec. (aka
|
||
|
|
* a mini-driver).
|
||
|
|
*
|
||
|
|
* @author Brian Matzon <brian@matzon.dk>
|
||
|
|
* @version $Revision$
|
||
|
|
*/
|
||
|
|
public abstract class BaseAL {
|
||
|
|
static {
|
||
|
|
try {
|
||
|
|
System.loadLibrary(org.lwjgl.Sys.LIBRARY_NAME);
|
||
|
|
} catch (UnsatisfiedLinkError ule) {
|
||
|
|
System.out.println("Failed to load OpenAL library: " + org.lwjgl.Sys.LIBRARY_NAME);
|
||
|
|
ule.printStackTrace();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|