1/* 2 3Copyright 1993 by Davor Matic 4 5Permission to use, copy, modify, distribute, and sell this software 6and its documentation for any purpose is hereby granted without fee, 7provided that the above copyright notice appear in all copies and that 8both that copyright notice and this permission notice appear in 9supporting documentation. Davor Matic makes no representations about 10the suitability of this software for any purpose. It is provided "as 11is" without express or implied warranty. 12 13*/ 14 15#ifndef XNESTPIXMAP_H 16#define XNESTPIXMAP_H 17 18extern DevPrivateKeyRec xnestPixmapPrivateKeyRec; 19#define xnestPixmapPrivateKey (&xnestPixmapPrivateKeyRec) 20 21typedef struct { 22 Pixmap pixmap; 23} xnestPrivPixmap; 24 25#define xnestPixmapPriv(pPixmap) ((xnestPrivPixmap *) \ 26 dixLookupPrivate(&(pPixmap)->devPrivates, xnestPixmapPrivateKey)) 27 28#define xnestPixmap(pPixmap) (xnestPixmapPriv(pPixmap)->pixmap) 29 30#define xnestSharePixmap(pPixmap) ((pPixmap)->refcnt++) 31 32PixmapPtr xnestCreatePixmap(ScreenPtr pScreen, int width, int height, 33 int depth, unsigned usage_hint); 34Bool xnestDestroyPixmap(PixmapPtr pPixmap); 35RegionPtr xnestPixmapToRegion(PixmapPtr pPixmap); 36 37#endif /* XNESTPIXMAP_H */ 38