Package com.kakao.vectormap.graphics.gl
Interface GLSurfaceView.EGLConfigChooser
-
- All Known Implementing Classes:
GLSurfaceView.BaseConfigChooser
,KConfigChooser
- Enclosing class:
- GLSurfaceView
public static interface 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
GLSurfaceView.setEGLConfigChooser(EGLConfigChooser)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EGLConfig
chooseConfig(EGL10 egl, EGLDisplay display)
Choose a configuration from the list.
-
-
-
Method Detail
-
chooseConfig
EGLConfig chooseConfig(EGL10 egl, EGLDisplay display)
Choose a configuration from the list. Implementors typically implement this method by callingEGL10#eglChooseConfig
and iterating through the results. Please consult the EGL specification available from The Khronos Group to learn how to call eglChooseConfig.- Parameters:
egl
- the EGL10 for the current display.display
- the current display.- Returns:
- the chosen configuration.
-
-