Home
last modified time | relevance | path

Searched refs:attrib_p (Results 1 – 1 of 1) sorted by relevance

/sdk/emulator/opengl/host/libs/libOpenglRender/
DFBConfig.cpp174 EGLint * attrib_p = attribs; in chooseConfig() local
176 while (attrib_p[0] != EGL_NONE) { in chooseConfig()
177 if (attrib_p[0] == EGL_SURFACE_TYPE) { in chooseConfig()
178 attrib_p[1] = EGL_PBUFFER_BIT; //replace whatever was there before in chooseConfig()
181 attrib_p += 2; in chooseConfig()
186 attrib_p = newAttribs; in chooseConfig()
188 *(attrib_p++) = EGL_SURFACE_TYPE; in chooseConfig()
189 *(attrib_p++) = EGL_PBUFFER_BIT; in chooseConfig()
191 memcpy(attrib_p, attribs, attribCnt*sizeof(EGLint)); in chooseConfig()
192 attrib_p += attribCnt; in chooseConfig()
[all …]