Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
Added in API level 3
public static interface

GLSurfaceView.EGLConfigChooser

android.opengl.GLSurfaceView.EGLConfigChooser

Class Overview

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

public abstract EGLConfig chooseConfig ( EGL10 egl, EGLDisplay display)

Added in API level 3

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 the EGL10 for the current display.
display the current display.
Returns
  • the chosen configuration.