FileDocCategorySizeDatePackage
EGLConfig.javaAPI DocAndroid 5.1 API1068Thu Mar 12 22:22:40 GMT 2015android.opengl

EGLConfig

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

Fields Summary
Constructors Summary
private EGLConfig(long handle)

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

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

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