FileDocCategorySizeDatePackage
EGLDisplayImpl.javaAPI DocAndroid 5.1 API1423Thu Mar 12 22:22:40 GMT 2015com.google.android.gles_jni

EGLDisplayImpl

public class EGLDisplayImpl extends EGLDisplay

Fields Summary
long
mEGLDisplay
Constructors Summary
public EGLDisplayImpl(long dpy)

        mEGLDisplay = dpy;
    
Methods Summary
public booleanequals(java.lang.Object o)

        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        EGLDisplayImpl that = (EGLDisplayImpl) o;

        return mEGLDisplay == that.mEGLDisplay;

    
public inthashCode()

        /*
         * Based on the algorithm suggested in
         * http://developer.android.com/reference/java/lang/Object.html
         */
        int result = 17;
        result = 31 * result + (int) (mEGLDisplay ^ (mEGLDisplay >>> 32));
        return result;