Home | History | Annotate | Download | only in EGLTest

Lines Matching defs:config

89     EGLConfig config;
97 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
104 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
107 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
110 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
121 EGLConfig config;
131 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
147 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
159 EGLConfig config;
171 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
178 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
181 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
184 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
187 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
199 EGLConfig config;
224 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
230 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
233 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
236 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
239 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
262 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config, mANW.get(), NULL);