mEGLDisplay = dpy;
if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; EGLDisplayImpl that = (EGLDisplayImpl) o; return mEGLDisplay == that.mEGLDisplay;
/* * 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;