Home | History | Annotate | Download | only in EGLTest

Lines Matching refs:components

70     EGLint components[3];
72 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
82 EXPECT_GE(components[0], 8);
83 EXPECT_GE(components[1], 8);
84 EXPECT_GE(components[2], 8);
107 EGLint components[4];
109 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
112 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
115 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
118 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
122 EXPECT_GE(components[0], 8);
123 EXPECT_GE(components[1], 8);
124 EXPECT_GE(components[2], 8);
125 EXPECT_GE(components[3], 8);