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

EGLContext

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

Fields Summary
Constructors Summary
private EGLContext(long handle)

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

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

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