2003/09/19 05:26:47
[org.ibex.core.git] / src / org / xwt / plat / OpenGL.java
index 2028ceb..d730e0e 100644 (file)
@@ -52,7 +52,7 @@ abstract class OpenGL {
         public NotSupportedException(String s) { super(s); }
     }
 
-    public static abstract class GLDoubleBuffer extends DoubleBuffer {
+    public static abstract class GLPixelBuffer extends DoubleBuffer {
         protected int width;
         protected int height;
         public int getWidth() { return width; }
@@ -60,7 +60,7 @@ abstract class OpenGL {
         
         private boolean glScissorEnabled = false;
         
-        public GLDoubleBuffer(int width, int height) {
+        public GLPixelBuffer(int width, int height) {
             this.width = width;
             this.height = height;
         }