public interface EGLHandle

Known direct subclasses
EGLImageKHR

EGLImageKHR is an object which can be used to create EGLImage target resources (inside client APIs).

EGLSyncKHR

EGLHandle to wrap native EGLSync objects.


Interface used to wrap native EGL objects to create type safe objects

Summary

Public methods

abstract long

Returns the native handle of the wrapped EGL object.

Public methods

getNativeHandle

Added in 1.0.0-rc01
abstract long getNativeHandle()

Returns the native handle of the wrapped EGL object. This handle can be cast to the corresponding native type on the native side.

For example, EGLDisplay dpy = (EGLDisplay)handle;

Returns
long

the native handle of the wrapped EGL object.