X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Forg%2Fxwt%2Fplat%2FOpenGL.java;h=d730e0e938cbb0879d70283955324512abc41754;hb=c6069948906645d974f46bdb96617a9a6a504636;hp=2028ceb69472af336bc849c167b6c0fca29440d7;hpb=cf3587e2fd5966b7ebfd721d9413674224d1ad2a;p=org.ibex.core.git diff --git a/src/org/xwt/plat/OpenGL.java b/src/org/xwt/plat/OpenGL.java index 2028ceb..d730e0e 100644 --- a/src/org/xwt/plat/OpenGL.java +++ b/src/org/xwt/plat/OpenGL.java @@ -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; }