/**@class android.opengl.GLSurfaceView.EGLConfigChooser
 An interface for choosing an EGLConfig configuration from a list of
 potential configurations.
 <p>
 This interface must be implemented by clients wishing to call
 {@link android.opengl.GLSurfaceView#setEGLConfigChooser(EGLConfigChooser)}
*/
var EGLConfigChooser = {

/**Choose a configuration from the list. Implementors typically
 implement this method by calling
 {@link EGL10#eglChooseConfig} and iterating through the results. Please consult the
 EGL specification available from The Khronos Group to learn how to call eglChooseConfig.
@param {Object {EGL10}} egl the EGL10 for the current display.
@param {Object {EGLDisplay}} display the current display.
@return {Object {javax.microedition.khronos.egl.EGLConfig}} the chosen configuration.
*/
chooseConfig : function(  ) {},


};