Lines Matching refs:pFormat
228 miInitIndexed(ScreenPtr pScreen, PictFormatPtr pFormat) in miInitIndexed() argument
230 ColormapPtr pColormap = pFormat->index.pColormap; in miInitIndexed()
256 pFormat->index.nvalues = num; in miInitIndexed()
257 pFormat->index.pValues = xallocarray(num, sizeof(xIndexValue)); in miInitIndexed()
258 if (!pFormat->index.pValues) { in miInitIndexed()
269 pFormat->index.pValues[i].pixel = p; in miInitIndexed()
270 pFormat->index.pValues[i].red = rgb[i].red; in miInitIndexed()
271 pFormat->index.pValues[i].green = rgb[i].green; in miInitIndexed()
272 pFormat->index.pValues[i].blue = rgb[i].blue; in miInitIndexed()
273 pFormat->index.pValues[i].alpha = 0xffff; in miInitIndexed()
302 pFormat->index.devPrivate = pIndexed; in miInitIndexed()
307 miCloseIndexed(ScreenPtr pScreen, PictFormatPtr pFormat) in miCloseIndexed() argument
309 free(pFormat->index.devPrivate); in miCloseIndexed()
310 pFormat->index.devPrivate = NULL; in miCloseIndexed()
311 free(pFormat->index.pValues); in miCloseIndexed()
312 pFormat->index.pValues = NULL; in miCloseIndexed()
317 PictFormatPtr pFormat, int ndef, xColorItem * pdef) in miUpdateIndexed() argument
319 miIndexedPtr pIndexed = pFormat->index.devPrivate; in miUpdateIndexed()