Home | History | Annotate | Download | only in EGLTest

Lines Matching refs:mEglDisplay

30     EGLDisplay mEglDisplay;
34 mEglDisplay(EGL_NO_DISPLAY) {
38 mEglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
39 ASSERT_NE(EGL_NO_DISPLAY, mEglDisplay);
44 EXPECT_TRUE(eglInitialize(mEglDisplay, &majorVersion, &minorVersion));
51 EGLBoolean success = eglTerminate(mEglDisplay);
68 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
102 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
110 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
134 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
141 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
144 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
147 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
150 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);