java.lang.Object | |
↳ | android.opengl.EGLObjectHandle |
Known Direct Subclasses |
Base class for wrapped EGL objects.
Protected Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This constructor is deprecated.
Use
EGLObjectHandle(long) instead. Handles
on 64 bit platforms will be wider than java ints.
| |||||||||||
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is deprecated.
Use
getNativeHandle() instead. Handles on
64 bit platforms will be wider than java ints.
| |||||||||||
Returns the native handle of the wrapped EGL object.
| |||||||||||
Returns an integer hash code for this object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
This constructor is deprecated.
Use EGLObjectHandle(long)
instead. Handles
on 64 bit platforms will be wider than java ints.
This method is deprecated.
Use getNativeHandle()
instead. Handles on
64 bit platforms will be wider than java ints.
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 an integer hash code for this object. By contract, any two
objects for which equals(Object)
returns true
must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode
method
if you intend implementing your own hashCode
method.