Lines Matching refs:pdefs
47 winStoreColors(ColormapPtr pmap, int ndef, xColorItem * pdefs);
188 winStoreColors(ColormapPtr pmap, int ndef, xColorItem * pdefs) in winStoreColors() argument
205 nRed = pdefs[i].red >> 8; in winStoreColors()
206 nGreen = pdefs[i].green >> 8; in winStoreColors()
207 nBlue = pdefs[i].blue >> 8; in winStoreColors()
210 pCmapPriv->peColors[pdefs[0].pixel + i].peRed = nRed; in winStoreColors()
211 pCmapPriv->peColors[pdefs[0].pixel + i].peGreen = nGreen; in winStoreColors()
212 pCmapPriv->peColors[pdefs[0].pixel + i].peBlue = nBlue; in winStoreColors()
215 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbRed = nRed; in winStoreColors()
216 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbGreen = nGreen; in winStoreColors()
217 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbBlue = nBlue; in winStoreColors()
226 if (!((pScreenPriv->pwinStoreColors) (pmap, ndef, pdefs))) { in winStoreColors()