Lines Matching refs:pPixmap
73 miModifyPixmapHeader(PixmapPtr pPixmap, int width, int height, int depth, in miModifyPixmapHeader() argument
76 if (!pPixmap) in miModifyPixmapHeader()
85 pPixmap->drawable.depth = depth; in miModifyPixmapHeader()
86 pPixmap->drawable.bitsPerPixel = bitsPerPixel; in miModifyPixmapHeader()
87 pPixmap->drawable.id = 0; in miModifyPixmapHeader()
88 pPixmap->drawable.x = 0; in miModifyPixmapHeader()
89 pPixmap->drawable.y = 0; in miModifyPixmapHeader()
90 pPixmap->drawable.width = width; in miModifyPixmapHeader()
91 pPixmap->drawable.height = height; in miModifyPixmapHeader()
92 pPixmap->devKind = devKind; in miModifyPixmapHeader()
93 pPixmap->refcnt = 1; in miModifyPixmapHeader()
94 pPixmap->devPrivate.ptr = pPixData; in miModifyPixmapHeader()
102 pPixmap->drawable.width = width; in miModifyPixmapHeader()
105 pPixmap->drawable.height = height; in miModifyPixmapHeader()
108 pPixmap->drawable.depth = depth; in miModifyPixmapHeader()
111 pPixmap->drawable.bitsPerPixel = bitsPerPixel; in miModifyPixmapHeader()
113 pPixmap->drawable.bitsPerPixel = BitsPerPixel(depth); in miModifyPixmapHeader()
120 pPixmap->devKind = devKind; in miModifyPixmapHeader()
122 pPixmap->devKind = PixmapBytePad(pPixmap->drawable.width, in miModifyPixmapHeader()
123 pPixmap->drawable.depth); in miModifyPixmapHeader()
126 pPixmap->devPrivate.ptr = pPixData; in miModifyPixmapHeader()
128 pPixmap->drawable.serialNumber = NEXT_SERIAL_NUMBER; in miModifyPixmapHeader()
177 PixmapPtr pPixmap; in miCreateScreenResources() local
182 pPixmap = in miCreateScreenResources()
184 if (!pPixmap) in miCreateScreenResources()
187 if (!(*pScreen->ModifyPixmapHeader) (pPixmap, pScreen->width, in miCreateScreenResources()
195 value = (void *) pPixmap; in miCreateScreenResources()