Lines Matching +defs:pixel +defs:size
40 char size[20];
80 snprintf(size, 20, "%dx%d%s", pict->pDrawable->width,
84 snprintf(string, n, "%p:%c fmt %s (%s)", pict->pDrawable, loc, format, size);
139 uxa_get_pixel_from_rgba(CARD32 *pixel,
149 *pixel = 0;
171 *pixel |= ( blue >> (16 - bbits)) << bshift;
172 *pixel |= ( red >> (16 - rbits)) << rshift;
173 *pixel |= (green >> (16 - gbits)) << gshift;
174 *pixel |= (alpha >> (16 - abits)) << ashift;
180 uxa_get_rgba_from_pixel(CARD32 pixel,
210 *red = ((pixel >> rshift ) & ((1 << rbits) - 1)) << (16 - rbits);
216 *green = ((pixel >> gshift ) & ((1 << gbits) - 1)) << (16 - gbits);
222 *blue = ((pixel >> bshift ) & ((1 << bbits) - 1)) << (16 - bbits);
229 *alpha = ((pixel >> ashift ) & ((1 << abits) - 1)) << (16 - abits);
256 CARD32 pixel;
276 pixel = uxa_get_pixmap_first_pixel (pSrcPix);
283 if (!uxa_get_rgba_from_pixel(pixel, &red, &green, &blue, &alpha,
290 if (!uxa_get_pixel_from_rgba(&pixel, red, green, blue, alpha,
297 if (!(*uxa_screen->info->prepare_solid) (pDstPix, GXcopy, 0xffffffff, pixel))