mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 06:25:46 +00:00
Added GLU and GLUT, and core GL commands
This commit is contained in:
parent
fec4678286
commit
1b741fdfc5
8 changed files with 439 additions and 9 deletions
|
|
@ -14,12 +14,24 @@ import java.nio.ByteBuffer;
|
|||
* Sys.java Created on Aug 1, 2002 by foo
|
||||
*/
|
||||
/**
|
||||
* System class (named Sys so as not to conflict with java.lang.Sys)
|
||||
* System class (named Sys so as not to conflict with java.lang.System)
|
||||
*
|
||||
* @author foo
|
||||
*/
|
||||
public final class Sys {
|
||||
|
||||
/** Low process priority. @see #setProcessPriority() */
|
||||
public static final int LOW_PRIORITY = -1;
|
||||
|
||||
/** Normal process priority. @see #setProcessPriority() */
|
||||
public static final int NORMAL_PRIORITY = 0;
|
||||
|
||||
/** High process priority. @see #setProcessPriority() */
|
||||
public static final int HIGH_PRIORITY = 1;
|
||||
|
||||
/** Realtime priority. Use at your own risk. @see #setProcessPriority() */
|
||||
public static final int REALTIME_PRIORITY = 2;
|
||||
|
||||
static {
|
||||
initialize();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue