EGLImageKHR


class EGLImageKHR : EGLHandle


EGLImageKHR is an object which can be used to create EGLImage target resources (inside client APIs). This is similar to EGL's EGLImage API except the KHR suffix indicates it is generated as part of the extension APIs namely through EGLExt.eglCreateImageFromHardwareBuffer

Summary

Public constructors

EGLImageKHR(nativeHandle: Long)

Public functions

open operator Boolean
equals(other: Any?)
open Int
open String

Public properties

open Long

Returns the native handle of the wrapped EGL object.

Public constructors

EGLImageKHR

Added in 1.0.0-rc01
EGLImageKHR(nativeHandle: Long)

Public functions

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

nativeHandle

Added in 1.0.0-rc01
open val nativeHandleLong

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.