Lines Matching refs:components

110     EGLint components[3];  in TEST_F()  local
112 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
115 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
118 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
122 EXPECT_GE(components[0], 8); in TEST_F()
123 EXPECT_GE(components[1], 8); in TEST_F()
124 EXPECT_GE(components[2], 8); in TEST_F()
184 EGLint components[4]; in TEST_F() local
186 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
189 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
192 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
195 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in TEST_F()
199 EXPECT_GE(components[0], 8); in TEST_F()
200 EXPECT_GE(components[1], 8); in TEST_F()
201 EXPECT_GE(components[2], 8); in TEST_F()
202 EXPECT_GE(components[3], 8); in TEST_F()
239 EGLint components[4]; in TEST_F() local
243 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
246 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
249 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
252 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in TEST_F()
256 EXPECT_EQ(components[0], 8); in TEST_F()
257 EXPECT_EQ(components[1], 8); in TEST_F()
258 EXPECT_EQ(components[2], 8); in TEST_F()
259 EXPECT_EQ(components[3], 8); in TEST_F()
379 EGLint components[4]; in TEST_F() local
383 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
386 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
389 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
392 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in TEST_F()
396 EXPECT_EQ(components[0], 10); in TEST_F()
397 EXPECT_EQ(components[1], 10); in TEST_F()
398 EXPECT_EQ(components[2], 10); in TEST_F()
399 EXPECT_EQ(components[3], 2); in TEST_F()
454 EGLint components[4]; in get8BitConfig() local
458 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in get8BitConfig()
461 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in get8BitConfig()
464 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in get8BitConfig()
467 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in get8BitConfig()
472 EXPECT_EQ(components[0], 8); in get8BitConfig()
473 EXPECT_EQ(components[1], 8); in get8BitConfig()
474 EXPECT_EQ(components[2], 8); in get8BitConfig()
475 EXPECT_EQ(components[3], 8); in get8BitConfig()
688 EGLint components[4]; in TEST_F() local
690 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
693 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
696 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
699 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in TEST_F()
703 EXPECT_GE(components[0], 16); in TEST_F()
704 EXPECT_GE(components[1], 16); in TEST_F()
705 EXPECT_GE(components[2], 16); in TEST_F()
706 EXPECT_GE(components[3], 16); in TEST_F()
790 EGLint components[4]; in TEST_F() local
794 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]); in TEST_F()
797 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]); in TEST_F()
800 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]); in TEST_F()
803 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]); in TEST_F()
807 EXPECT_EQ(components[0], 10); in TEST_F()
808 EXPECT_EQ(components[1], 10); in TEST_F()
809 EXPECT_EQ(components[2], 10); in TEST_F()
810 EXPECT_EQ(components[3], 2); in TEST_F()