com.badlogic.gdx.backends.android.surfaceview
Interface GLBaseSurfaceViewLW.GLWrapper

Enclosing class:
GLBaseSurfaceViewLW

public static interface GLBaseSurfaceViewLW.GLWrapper

An interface used to wrap a GL interface.

Typically used for implementing debugging and tracing on top of the default GL interface. You would typically use this by creating your own class that implemented all the GL methods by delegating to another GL instance. Then you could add your own behavior before or after calling the delegate. All the GLWrapper would do was instantiate and return the wrapper GL instance:

 class MyGLWrapper implements GLWrapper {
     GL wrap(GL gl) {
         return new MyGLImplementation(gl);
     }
     static class MyGLImplementation implements GL,GL10,GL11,... {
         ...
     }
 }
 

See Also:
GLBaseSurfaceViewLW.setGLWrapper(GLWrapper)

Method Summary
 javax.microedition.khronos.opengles.GL wrap(javax.microedition.khronos.opengles.GL gl)
          Wraps a gl interface in another gl interface.
 

Method Detail

wrap

javax.microedition.khronos.opengles.GL wrap(javax.microedition.khronos.opengles.GL gl)
Wraps a gl interface in another gl interface.

Parameters:
gl - a GL interface that is to be wrapped.
Returns:
either the input argument or another GL object that wraps the input argument.


Copyright © 2013. All Rights Reserved.