aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-03-30 02:01:15 +0200
committerSven Gothel <[email protected]>2010-03-30 02:01:15 +0200
commit1a2a54a83a9adb95b4bfe9c337751acbef0cb0d3 (patch)
tree70eaf25d06284c2d71db7d51a5efdf7f18607be2 /src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java
parentb3f2ab84401efef233c0038f004a9f210cbe83fc (diff)
Adaptions to
http://www.jogamp.org/bugzilla/show_bug.cgi?id=392 7220416bcef3140883d3966d921442feae3107c4
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java b/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java
index a86045789..03b02b77e 100644
--- a/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java
+++ b/src/jogl/classes/com/jogamp/opengl/impl/egl/EGLPbufferDrawable.java
@@ -73,7 +73,7 @@ public class EGLPbufferDrawable extends EGLDrawable {
}
- protected long createSurface(long eglDpy, _EGLConfig eglNativeCfg, long surfaceHandle) {
+ protected long createSurface(long eglDpy, long eglNativeCfg, long surfaceHandle) {
NativeWindow nw = getNativeWindow();
int[] attrs = EGLGraphicsConfiguration.CreatePBufferSurfaceAttribList(nw.getWidth(), nw.getHeight(), texFormat);
long surf = EGL.eglCreatePbufferSurface(eglDpy, eglNativeCfg, attrs, 0);