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:
Elias Naur 2005-02-15 11:05:36 +00:00
parent a1a9f5ced2
commit 17ee2523c0
386 changed files with 30503 additions and 26177 deletions

View file

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