2006-11-26 11:13:41 -07:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright 1993 by Davor Matic
|
|
|
|
|
|
|
|
Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
and its documentation for any purpose is hereby granted without fee,
|
|
|
|
provided that the above copyright notice appear in all copies and that
|
|
|
|
both that copyright notice and this permission notice appear in
|
|
|
|
supporting documentation. Davor Matic makes no representations about
|
|
|
|
the suitability of this software for any purpose. It is provided "as
|
|
|
|
is" without express or implied warranty.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef XNESTPIXMAP_H
|
|
|
|
#define XNESTPIXMAP_H
|
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
extern DevPrivateKeyRec xnestPixmapPrivateKeyRec;
|
2012-06-10 07:21:05 -06:00
|
|
|
|
2010-12-05 08:36:02 -07:00
|
|
|
#define xnestPixmapPrivateKey (&xnestPixmapPrivateKeyRec)
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
typedef struct {
|
2012-06-10 07:21:05 -06:00
|
|
|
Pixmap pixmap;
|
2006-11-26 11:13:41 -07:00
|
|
|
} xnestPrivPixmap;
|
|
|
|
|
2008-11-02 08:26:08 -07:00
|
|
|
#define xnestPixmapPriv(pPixmap) ((xnestPrivPixmap *) \
|
|
|
|
dixLookupPrivate(&(pPixmap)->devPrivates, xnestPixmapPrivateKey))
|
2006-11-26 11:13:41 -07:00
|
|
|
|
|
|
|
#define xnestPixmap(pPixmap) (xnestPixmapPriv(pPixmap)->pixmap)
|
|
|
|
|
|
|
|
#define xnestSharePixmap(pPixmap) ((pPixmap)->refcnt++)
|
|
|
|
|
|
|
|
PixmapPtr xnestCreatePixmap(ScreenPtr pScreen, int width, int height,
|
2012-06-10 07:21:05 -06:00
|
|
|
int depth, unsigned usage_hint);
|
2006-11-26 11:13:41 -07:00
|
|
|
Bool xnestDestroyPixmap(PixmapPtr pPixmap);
|
|
|
|
RegionPtr xnestPixmapToRegion(PixmapPtr pPixmap);
|
|
|
|
|
2012-06-10 07:21:05 -06:00
|
|
|
#endif /* XNESTPIXMAP_H */
|