Lines Matching defs:privates
87 struct dri2_buffer_priv *privates;
102 privates = calloc(count, sizeof(struct dri2_buffer_priv));
103 if (privates == NULL) {
224 (*pScreen->DestroyPixmap)(privates[j].pixmap);
226 free(privates);
234 buffers[i].driverPrivate = &privates[i];
236 privates[i].pixmap = pixmap;
237 privates[i].attachment = attachments[i];
251 struct dri2_buffer_priv *privates;
363 privates = calloc(1, sizeof(struct dri2_buffer_priv));
364 if (privates == NULL)
370 buffers->driverPrivate = privates;
373 privates->pixmap = pixmap;
374 privates->attachment = attachment;
375 privates->refcnt = 1;