public interface

EGLConfigChooser

org.anddev.andengine.opengl.view.EGLConfigChooser
Known Indirect Subclasses

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) (c) 2010 Nicolas Gramlich (c) 2011 Zynga Inc.

Summary

Public Methods
abstract EGLConfig chooseConfig(EGL10 pEGL, EGLDisplay pEGLDisplay)
Choose a configuration from the list.

Public Methods

public abstract EGLConfig chooseConfig (EGL10 pEGL, EGLDisplay pEGLDisplay)

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