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

EGLSurface

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

Fields Summary
Constructors Summary
private EGLSurface(long handle)

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

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

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