mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-06 23:14:19 +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
25
src/java/org/lwjgl/opengl/GLU.java
Normal file
25
src/java/org/lwjgl/opengl/GLU.java
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/**
|
||||
* (C) 2002 Shaven Puppy Ltd
|
||||
*
|
||||
* GLU.java Created on Aug 9, 2002 by foo
|
||||
*/
|
||||
package org.lwjgl.opengl;
|
||||
|
||||
/**
|
||||
* GL Utilities library.
|
||||
*
|
||||
* @author foo
|
||||
*/
|
||||
public class GLU implements GLUConstants {
|
||||
|
||||
/** Handle to GL */
|
||||
private final GL gl;
|
||||
|
||||
/**
|
||||
* Constructor for GLU.
|
||||
*/
|
||||
public GLU(GL gl) {
|
||||
this.gl = gl;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue