X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fxwt%2Fplat%2FOpenGL.java;h=d730e0e938cbb0879d70283955324512abc41754;hp=2028ceb69472af336bc849c167b6c0fca29440d7;hb=c6069948906645d974f46bdb96617a9a6a504636;hpb=cf3587e2fd5966b7ebfd721d9413674224d1ad2a 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; }