Methods Summary |
---|
public synchronized boolean | eglBindTexImage(EGLDisplay display, EGLSurface surface, int buffer)
if (display == null) {
throw new IllegalArgumentException(Errors.EGL_DISPLAY_NULL);
}
if (surface == null) {
throw new IllegalArgumentException(Errors.EGL_SURFACE_NULL);
}
return EGL_TRUE ==
_eglBindTexImage(((EGLDisplayImpl)display).nativeId(),
((EGLSurfaceImpl)surface).nativeId(),
buffer);
|
public synchronized boolean | eglReleaseTexImage(EGLDisplay display, EGLSurface surface, int buffer)
if (display == null) {
throw new IllegalArgumentException(Errors.EGL_DISPLAY_NULL);
}
if (surface == null) {
throw new IllegalArgumentException(Errors.EGL_SURFACE_NULL);
}
return EGL_TRUE ==
_eglReleaseTexImage(((EGLDisplayImpl)display).nativeId(),
((EGLSurfaceImpl)surface).nativeId(),
buffer);
|
public synchronized boolean | eglSurfaceAttrib(EGLDisplay display, EGLSurface surface, int attribute, int value)
if (display == null) {
throw new IllegalArgumentException(Errors.EGL_DISPLAY_NULL);
}
if (surface == null) {
throw new IllegalArgumentException(Errors.EGL_SURFACE_NULL);
}
return EGL_TRUE ==
_eglSurfaceAttrib(((EGLDisplayImpl)display).nativeId(),
((EGLSurfaceImpl)surface).nativeId(),
attribute, value);
|
public synchronized boolean | eglSwapInterval(EGLDisplay display, int interval)
if (display == null) {
throw new IllegalArgumentException(Errors.EGL_DISPLAY_NULL);
}
return EGL_TRUE ==
_eglSwapInterval(((EGLDisplayImpl)display).nativeId(),
interval);
|