|
The Java™ Binding for the OpenGL® ES API | ||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EGLDisplay | |
javax.microedition.khronos.egl | A package containing the Khronos EGL interfaces. |
Uses of EGLDisplay in javax.microedition.khronos.egl |
Fields in javax.microedition.khronos.egl declared as EGLDisplay | |
static EGLDisplay |
EGL10.EGL_NO_DISPLAY
An EGLContext object used to indicate a null display. |
Methods in javax.microedition.khronos.egl that return EGLDisplay | |
EGLDisplay |
EGL10.eglGetDisplay(java.lang.Object native_display)
Return an EGL display connection. |
EGLDisplay |
EGL10.eglGetCurrentDisplay()
Return the display for the current EGL rendering context. |
Methods in javax.microedition.khronos.egl with parameters of type EGLDisplay | |
boolean |
EGL10.eglInitialize(EGLDisplay display,
int[] major_minor)
Initialize an EGL display connection. |
boolean |
EGL10.eglTerminate(EGLDisplay display)
Terminate an EGL display connection. |
java.lang.String |
EGL10.eglQueryString(EGLDisplay display,
int name)
Return a string describing an EGL display connection. |
boolean |
EGL10.eglGetConfigs(EGLDisplay display,
EGLConfig[] configs,
int config_size,
int[] num_config)
Return a list of all EGL frame buffer configurations for a display. |
boolean |
EGL10.eglChooseConfig(EGLDisplay display,
int[] attrib_list,
EGLConfig[] configs,
int config_size,
int[] num_config)
Return a list of EGL frame buffer configurations that match specified attributes. |
boolean |
EGL10.eglGetConfigAttrib(EGLDisplay display,
EGLConfig config,
int attribute,
int[] value)
Return information about an EGL frame buffer configuration. |
EGLSurface |
EGL10.eglCreateWindowSurface(EGLDisplay display,
EGLConfig config,
java.lang.Object native_window,
int[] attrib_list)
Create a new EGL window surface. |
EGLSurface |
EGL10.eglCreatePixmapSurface(EGLDisplay display,
EGLConfig config,
java.lang.Object native_pixmap,
int[] attrib_list)
Create a new EGL pixmap surface. |
EGLSurface |
EGL10.eglCreatePbufferSurface(EGLDisplay display,
EGLConfig config,
int[] attrib_list)
Create a new EGL pixel buffer surface. |
boolean |
EGL10.eglDestroySurface(EGLDisplay display,
EGLSurface surface)
Destroy an EGL surface. |
boolean |
EGL10.eglQuerySurface(EGLDisplay display,
EGLSurface surface,
int attribute,
int[] value)
Return EGL surface information. |
EGLContext |
EGL10.eglCreateContext(EGLDisplay display,
EGLConfig config,
EGLContext share_context,
int[] attrib_list)
Create a new EGL rendering context. |
boolean |
EGL10.eglDestroyContext(EGLDisplay display,
EGLContext context)
Destroy an EGL rendering context. |
boolean |
EGL10.eglMakeCurrent(EGLDisplay display,
EGLSurface draw,
EGLSurface read,
EGLContext context)
Attach an EGL rendering context to EGL surfaces. |
boolean |
EGL10.eglQueryContext(EGLDisplay display,
EGLContext context,
int attribute,
int[] value)
Return EGL rendering context information. |
boolean |
EGL10.eglSwapBuffers(EGLDisplay display,
EGLSurface surface)
Post EGL surface color buffer to a native window. |
boolean |
EGL10.eglCopyBuffers(EGLDisplay display,
EGLSurface surface,
java.lang.Object native_pixmap)
Copy EGL surface color buffer to a native pixmap. |
boolean |
EGL11.eglSurfaceAttrib(EGLDisplay display,
EGLSurface surface,
int attribute,
int value)
(EGL 1.1 only) Set an EGL surface attribute. |
boolean |
EGL11.eglBindTexImage(EGLDisplay display,
EGLSurface surface,
int buffer)
(EGL 1.1 only) Defines a two-dimensional texture image. |
boolean |
EGL11.eglReleaseTexImage(EGLDisplay display,
EGLSurface surface,
int buffer)
(EGL 1.1 only) Releases a color buffer that is being used as a texture. |
boolean |
EGL11.eglSwapInterval(EGLDisplay display,
int interval)
(EGL 1.1 only) Specifies the minimum number of video frame periods per buffer swap for the window associated with the current context. |
|
Final Release, Oct 2006 | ||||||||||
PREV NEXT | FRAMES NO FRAMES |