Added in API level 5
  
  
  
  
GLSurfaceView.EGLContextFactory
  public
  static
  
  
  interface
  GLSurfaceView.EGLContextFactory
  
  
  
| android.opengl.GLSurfaceView.EGLContextFactory | 
An interface for customizing the eglCreateContext and eglDestroyContext calls.
 This interface must be implemented by clients wishing to call
 GLSurfaceView.setEGLContextFactory(EGLContextFactory)
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        EGLContext | 
      createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig)
       | 
| 
        abstract
        
        
        
        
        void | 
      destroyContext(EGL10 egl, EGLDisplay display, EGLContext context)
       | 
Public methods
createContext
    Added in API level 5
  
      
  
    public abstract EGLContext createContext (EGL10 egl, EGLDisplay display, EGLConfig eglConfig)
| Parameters | |
|---|---|
| egl | EGL10 | 
| display | EGLDisplay | 
| eglConfig | EGLConfig | 
| Returns | |
|---|---|
| EGLContext | |
destroyContext
    Added in API level 5
  
      
  
    public abstract void destroyContext (EGL10 egl, EGLDisplay display, EGLContext context)
| Parameters | |
|---|---|
| egl | EGL10 | 
| display | EGLDisplay | 
| context | EGLContext | 
