mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-08 16:04:39 +00:00
The Big Generator. All OpenGL and OpenAL java and native source files are now generated from templates. See doc/generator.txt for a detailed description.
This commit is contained in:
parent
a1a9f5ced2
commit
17ee2523c0
386 changed files with 30503 additions and 26177 deletions
|
|
@ -49,6 +49,13 @@ public class OpenALException extends RuntimeException {
|
|||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor that takes an AL error number
|
||||
*/
|
||||
public OpenALException(int error_code) {
|
||||
super("OpenAL error: " + AL10.alGetString(error_code) + " (" + error_code + ")");
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor for OpenALException.
|
||||
* @param message
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue