Most visited

Recently visited

Added in API level 3

GLSurfaceView.EGLConfigChooser

public static interface GLSurfaceView.EGLConfigChooser

android.opengl.GLSurfaceView.EGLConfigChooser


An interface for choosing an EGLConfig configuration from a list of potential configurations.

This interface must be implemented by clients wishing to call setEGLConfigChooser(EGLConfigChooser)

Summary

Public methods

abstract EGLConfig chooseConfig(EGL10 egl, EGLDisplay display)

Choose a configuration from the list.

Public methods

chooseConfig

Added in API level 3
EGLConfig chooseConfig (EGL10 egl, 
                EGLDisplay display)

Choose a configuration from the list. Implementors typically implement this method by calling eglChooseConfig(EGLDisplay, int[], EGLConfig[], int, int[]) and iterating through the results. Please consult the EGL specification available from The Khronos Group to learn how to call eglChooseConfig.

Parameters
egl EGL10: the EGL10 for the current display.
display EGLDisplay: the current display.
Returns
EGLConfig the chosen configuration.

Hooray!