summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/demos/es1/RedSquare.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/demos/es1/RedSquare.java b/src/demos/es1/RedSquare.java
index fb02079..d1e78be 100755
--- a/src/demos/es1/RedSquare.java
+++ b/src/demos/es1/RedSquare.java
@@ -42,6 +42,9 @@ public class RedSquare {
//
System.out.println("Entering initialization");
+ System.out.println("GL_VERSION=" + gl.glGetString(GL.GL_VERSION));
+ System.out.println("GL_EXTENSIONS:");
+ System.out.println(" " + gl.glGetString(GL.GL_EXTENSIONS));
// Allocate vertex arrays
FloatBuffer colors = BufferUtil.newFloatBuffer(16);
@@ -62,7 +65,7 @@ public class RedSquare {
gl.glColorPointer(4, GL.GL_FLOAT, 0, colors);
// OpenGL Render Settings
- gl.glClearColor(0, 0, 0, 1);
+ gl.glClearColorx(0, 0, 0, 65535);
gl.glEnable(GL.GL_DEPTH_TEST);
//----------------------------------------------------------------------