Home | History | Annotate | Download | only in libOpenglRender

Lines Matching refs:attrib_p

175     EGLint * attrib_p = attribs;
177 while (attrib_p[0] != EGL_NONE) {
178 if (attrib_p[0] == EGL_SURFACE_TYPE) {
179 attrib_p[1] = EGL_PBUFFER_BIT; //replace whatever was there before
182 attrib_p += 2;
187 attrib_p = newAttribs;
189 *(attrib_p++) = EGL_SURFACE_TYPE;
190 *(attrib_p++) = EGL_PBUFFER_BIT;
192 memcpy(attrib_p, attribs, attribCnt*sizeof(EGLint));
193 attrib_p += attribCnt;
194 *attrib_p = EGL_NONE;
198 EGLint * attrib_p = newAttribs;
199 while (attrib_p[0] != EGL_NONE) {
200 DBG("attr: 0x%x %d, ", attrib_p[0], attrib_p[1]);
201 attrib_p += 2;