mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-07 15:35:09 +00:00
Added GL constants and GLs 1.1, 1.2, 1.3
This commit is contained in:
parent
1b741fdfc5
commit
04819cc981
10 changed files with 1699 additions and 327 deletions
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
package org.lwjgl.opengl;
|
||||
|
||||
import org.lwjgl.Sys;
|
||||
|
||||
/**
|
||||
* GL Utilities library.
|
||||
*
|
||||
|
|
@ -12,6 +14,10 @@ package org.lwjgl.opengl;
|
|||
*/
|
||||
public class GLU implements GLUConstants {
|
||||
|
||||
static {
|
||||
System.loadLibrary(Sys.LIBRARY_NAME);
|
||||
}
|
||||
|
||||
/** Handle to GL */
|
||||
private final GL gl;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue