Home | History | Annotate | Download | only in mi

Lines Matching defs:pPixmap

62 miModifyPixmapHeader(PixmapPtr pPixmap, int width, int height, int depth,
65 if (!pPixmap)
74 pPixmap->drawable.depth = depth;
75 pPixmap->drawable.bitsPerPixel = bitsPerPixel;
76 pPixmap->drawable.id = 0;
77 pPixmap->drawable.x = 0;
78 pPixmap->drawable.y = 0;
79 pPixmap->drawable.width = width;
80 pPixmap->drawable.height = height;
81 pPixmap->devKind = devKind;
82 pPixmap->refcnt = 1;
83 pPixmap->devPrivate.ptr = pPixData;
91 pPixmap->drawable.width = width;
94 pPixmap->drawable.height = height;
97 pPixmap->drawable.depth = depth;
100 pPixmap->drawable.bitsPerPixel = bitsPerPixel;
102 pPixmap->drawable.bitsPerPixel = BitsPerPixel(depth);
109 pPixmap->devKind = devKind;
111 pPixmap->devKind = PixmapBytePad(pPixmap->drawable.width,
112 pPixmap->drawable.depth);
115 pPixmap->devPrivate.ptr = pPixData;
117 pPixmap->drawable.serialNumber = NEXT_SERIAL_NUMBER;
159 PixmapPtr pPixmap;
164 pPixmap =
166 if (!pPixmap)
169 if (!(*pScreen->ModifyPixmapHeader) (pPixmap, pScreen->width,
177 value = (void *) pPixmap;
183 pScreen->devPrivate = value; /* pPixmap or pbits */