Home | History | Annotate | Download | only in EGLTest

Lines Matching defs:components

72     EGLint components[3];
74 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
77 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
80 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
84 EXPECT_GE(components[0], 8);
85 EXPECT_GE(components[1], 8);
86 EXPECT_GE(components[2], 8);
146 EGLint components[4];
148 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
151 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
154 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
157 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
161 EXPECT_GE(components[0], 8);
162 EXPECT_GE(components[1], 8);
163 EXPECT_GE(components[2], 8);
164 EXPECT_GE(components[3], 8);