aboutsummaryrefslogtreecommitdiffstats
path: root/C2J/manual/gl-enum-manualCoded.java
diff options
context:
space:
mode:
Diffstat (limited to 'C2J/manual/gl-enum-manualCoded.java')
-rw-r--r--C2J/manual/gl-enum-manualCoded.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/C2J/manual/gl-enum-manualCoded.java b/C2J/manual/gl-enum-manualCoded.java
new file mode 100644
index 0000000..5ee07b0
--- /dev/null
+++ b/C2J/manual/gl-enum-manualCoded.java
@@ -0,0 +1,20 @@
+/**
+ * @(#) GLEnum.java
+ */
+
+
+package gl4java;
+
+/**
+ * The base interface for OpenGL enumerates,
+ * which provides you all the C-API style enumerates
+ *
+ * @version 2.01, 15. November 1999
+ * @author Sven Goethel
+ */
+public interface GLEnum
+{
+
+ public static final boolean GL_FALSE = false;
+ public static final boolean GL_TRUE = true;
+