Home | History | Annotate | Download | only in EGLTest

Lines Matching defs:config

60     EGLConfig config;
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]);
92 EGLConfig config;
102 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
110 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
122 EGLConfig 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]);