Lines Matching defs:pixmap

22 /* Force full pixmap update if there're more damaged regions than this number*/
723 DECLEXPORT(GLXPixmap) VBOXGLXTAG(glXCreateGLXPixmap)( Display *dpy, XVisualInfo *vis, Pixmap pixmap )
726 return VBOXGLXTAG(glXCreatePixmap)(dpy, (GLXFBConfig)vis->visualid, pixmap, NULL);
1131 /*@todo this creates new pixmap for window every call*/
1388 Pixmap pixmap)
1390 return VBOXGLXTAG(glXCreatePixmap)(dpy, config, pixmap, NULL);
1614 VBOXGLXTAG(glXCreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const ATTRIB_TYPE *attrib_list)
1630 crDebug("glXCreatePixmap called for %lu", pixmap);
1633 if (!XGetGeometry(dpy, pixmap, &root, &x, &y, &w, &h, &border, &depth))
1636 if (!XGetGeometry(dpy, pixmap, &root, &x, &y, &w, &h, &border, &depth))
1702 crHashtableAdd(stub.pGLXPixmapsHash, (unsigned int) pixmap, pGlxPixmap);
1703 return (GLXPixmap) pixmap;
1744 DECLEXPORT(void) VBOXGLXTAG(glXDestroyPixmap)(Display *dpy, GLXPixmap pixmap)
1748 if (crHashtableSearch(stub.pGLXPixmapsHash, (unsigned int) pixmap))
1751 crHashtableDelete(stub.pGLXPixmapsHash, (unsigned int) pixmap, crFree);
1759 parms.draw = pixmap;
1765 crWarning("glXDestroyPixmap called for unknown glxpixmap 0x%x", (unsigned int) pixmap);
1783 //crDebug("Destroy: Damage for drawable 0x%x, handle 0x%x", (unsigned int) pixmap, (unsigned int) parms.pGlxPixmap->damage);
1792 crHashtableDelete(parms.pCtx->pGLXPixmapsHash, (unsigned int) pixmap, crFree);
2346 /* If there's damage extension, then get handle for damage events related to this pixmap */
2358 /*We have never seen this pixmap before, so mark it as dirty for first use*/
2496 * so have to walk glxpixmaps hashtable to find if we have damage event handle assigned to some pixmap
2582 crWarning("Failed, to get pixmap data for 0x%x", (unsigned int) draw);
2593 else /* Use shm to get pixmap data */
2600 /* Either we failed to allocate damage region or this pixmap is marked for full update */
2831 DECLEXPORT(GLXPixmap) VBOXGLXTAG(glXCreateGLXPixmapMESA)(Display *dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap)
2835 (void) pixmap;