FileDocCategorySizeDatePackage
EGLDisplay.javaAPI DocAndroid 5.1 API1074Thu Mar 12 22:22:40 GMT 2015android.opengl

EGLDisplay

public class EGLDisplay extends EGLObjectHandle
Wrapper class for native EGLDisplay objects.

Fields Summary
Constructors Summary
private EGLDisplay(long handle)

        super(handle);
    
Methods Summary
public booleanequals(java.lang.Object o)

        if (this == o) return true;
        if (!(o instanceof EGLDisplay)) return false;

        EGLDisplay that = (EGLDisplay) o;
        return getNativeHandle() == that.getNativeHandle();