Home | History | Annotate | Download | only in EGLTest

Lines Matching refs:components

111     EGLint components[3];
113 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
116 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
119 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
123 EXPECT_GE(components[0], 8);
124 EXPECT_GE(components[1], 8);
125 EXPECT_GE(components[2], 8);
185 EGLint components[4];
187 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
190 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
193 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
196 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
200 EXPECT_GE(components[0], 8);
201 EXPECT_GE(components[1], 8);
202 EXPECT_GE(components[2], 8);
203 EXPECT_GE(components[3], 8);
239 EGLint components[4];
243 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
246 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
249 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
252 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
256 EXPECT_EQ(components[0], 8);
257 EXPECT_EQ(components[1], 8);
258 EXPECT_EQ(components[2], 8);
259 EXPECT_EQ(components[3], 8);
325 EGLint components[4];
329 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
332 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
335 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
338 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
342 EXPECT_EQ(components[0], 10);
343 EXPECT_EQ(components[1], 10);
344 EXPECT_EQ(components[2], 10);
345 EXPECT_EQ(components[3], 2);
400 EGLint components[4];
404 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
407 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
410 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
413 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
418 EXPECT_EQ(components[0], 8);
419 EXPECT_EQ(components[1], 8);
420 EXPECT_EQ(components[2], 8);
421 EXPECT_EQ(components[3], 8);
634 EGLint components[4];
636 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
639 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
642 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
645 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
649 EXPECT_GE(components[0], 16);
650 EXPECT_GE(components[1], 16);
651 EXPECT_GE(components[2], 16);
652 EXPECT_GE(components[3], 16);
736 EGLint components[4];
740 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
743 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
746 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
749 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
753 EXPECT_EQ(components[0], 10);
754 EXPECT_EQ(components[1], 10);
755 EXPECT_EQ(components[2], 10);
756 EXPECT_EQ(components[3], 2);