Home | History | Annotate | Download | only in EGLTest

Lines Matching refs:components

73     EGLint components[3];
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
85 EXPECT_GE(components[0], 8);
86 EXPECT_GE(components[1], 8);
87 EXPECT_GE(components[2], 8);
139 EGLint components[4];
141 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
144 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
147 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
150 success = eglGetConfigAttrib(mEglDisplay, config, EGL_ALPHA_SIZE, &components[3]);
154 EXPECT_GE(components[0], 8);
155 EXPECT_GE(components[1], 8);
156 EXPECT_GE(components[2], 8);
157 EXPECT_GE(components[3], 8);