HomeSort by: relevance | last modified time | path
    Searched defs:argb (Results 1 - 13 of 13) sorted by relevancy

  /xsrc/external/mit/xorg-server/dist/include/
cursorstr.h 67 CARD32 *argb; /* full-color alpha blended */ member in struct:_CursorBits
  /xsrc/external/mit/xorg-server.old/dist/dix/
cursor.c 89 free(bits->argb);
152 if (bits->argb)
154 CARD32 *argb = bits->argb; local
157 if (*argb++ & 0xff000000) return;
228 * \param argb no padding
232 CARD32 *argb, CursorMetricPtr cm,
255 bits->argb = argb;
414 bits->argb = 0
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/include/
cursorstr.h 69 CARD32 *argb; /* full-color alpha blended */ member in struct:_CursorBits
  /xsrc/external/mit/xorg-server/dist/dix/
cursor.c 83 free(bits->argb);
166 if (bits->argb) {
167 CARD32 *argb = bits->argb; local
171 if (*argb++ & 0xff000000)
235 * \param argb no padding
239 CARD32 *argb, CursorMetricPtr cm,
258 bits->argb = argb;
292 if (argb) {
    [all...]
  /xsrc/external/mit/xf86-video-mach64/dist/src/
atimach64render.c 206 Mach64PixelARGB(PixmapPtr pPixmap, CARD32 format, CARD32 *argb)
222 *argb = comp << 24;
229 *argb = comp;
235 *argb |= comp << 8;
241 *argb |= comp << 16;
251 *argb |= comp << 24;
446 MACH64_FALLBACK(("Non-ARGB mask.\n"));
468 CARD32 argb = 0; local
475 Mach64PixelARGB(pMask, pMaskPicture->format, &argb);
476 argb >>= 24
754 CARD32 argb; \/* fragment color *\/ member in struct:__anon130
    [all...]
  /xsrc/external/mit/pixman/dist/pixman/
pixman-access.c 601 argb_t *argb = buffer; local
603 argb->a = pixman_unorm_to_float ((p >> 24) & 0xff, 8);
605 argb->r = to_linear [(p >> 16) & 0xff];
606 argb->g = to_linear [(p >> 8) & 0xff];
607 argb->b = to_linear [(p >> 0) & 0xff];
627 argb_t *argb = buffer; local
629 argb->a = 1.0f;
631 argb->r = to_linear[(p >> 16) & 0xff];
632 argb->g = to_linear[(p >> 8) & 0xff];
633 argb->b = to_linear[(p >> 0) & 0xff]
913 argb_t argb; local
929 argb_t argb; local
951 argb_t argb; local
971 argb_t argb; local
992 argb_t argb; local
1013 argb_t argb; local
1033 argb_t argb; local
1050 argb_t argb; local
1068 argb_t argb; local
    [all...]
  /xsrc/external/mit/ctwm/dist/
ewmh.c 625 * pixel: ARGB
838 static void convert_for_16(int w, int x, int y, int argb)
840 int r = (argb >> 16) & 0xFF;
841 int g = (argb >> 8) & 0xFF;
842 int b = (argb >> 0) & 0xFF;
846 static void convert_for_32(int w, int x, int y, int argb)
848 buffer_32bpp [y * w + x] = argb & 0x00FFFFFF;
855 void (*store_data)(int w, int x, int y, int argb);
903 * Copy all ARGB pixels to the pixmap (the RGB part), and the bitmap (the
910 unsigned long argb = prop[i++] local
    [all...]
  /xsrc/external/mit/xorg-server/dist/render/
render.c 1460 CARD32 *argbbits, *argb; local
1554 argb = argbbits;
1557 CARD32 p = *argb++;
1577 * Convert argb image to two plane cursor
1581 argb = argbbits;
1584 CARD32 p = *argb++;
  /xsrc/external/mit/xf86-video-amdgpu/dist/src/
drmmode_display.c 1493 drmmode_cursor_pixel(xf86CrtcPtr crtc, uint32_t *argb, Bool *premultiplied,
1496 uint32_t alpha = *argb >> 24;
1502 if (alpha == 0 && (*argb & 0xffffff) != 0) {
1512 if (*argb > (alpha | alpha << 8 | alpha << 16 | alpha << 24)) {
1522 *argb = 0;
1528 rgb[i] = (*argb >> (i * 8)) & 0xff;
1546 *argb = alpha << 24 | rgb[2] << 16 | rgb[1] << 8 | rgb[0];
1558 uint32_t argb; local
1584 argb = image[srcoffset];
1585 if (!drmmode_cursor_pixel(crtc, &argb, &premultiplied
    [all...]
  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
drmmode_display.c 1070 drmmode_cursor_pixel(xf86CrtcPtr crtc, uint32_t *argb, Bool *premultiplied,
1073 uint32_t alpha = *argb >> 24;
1079 if (alpha == 0 && (*argb & 0xffffff) != 0) {
1089 if (*argb > (alpha | alpha << 8 | alpha << 16 | alpha << 24)) {
1099 *argb = 0;
1105 rgb[i] = (*argb >> (i * 8)) & 0xff;
1123 *argb = alpha << 24 | rgb[2] << 16 | rgb[1] << 8 | rgb[0];
1136 uint32_t argb; local
1162 argb = image[srcoffset];
1163 if (!drmmode_cursor_pixel(crtc, &argb, &premultiplied
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/render/
render.c 1523 CARD32 *argbbits, *argb; local
1621 argb = argbbits;
1626 CARD32 p = *argb++;
1646 * Convert argb image to two plane cursor
1650 argb = argbbits;
1655 CARD32 p = *argb++;
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_display.c 4516 return (uint32_t *)c->bits->argb;
4526 const uint32_t *argb; local
4546 __DBG(("%s: cursor=%dx%d, pitch=%d, serial=%d, argb?=%d\n", __FUNCTION__,
4584 argb = get_cursor_argb(sna->cursor.ref);
4598 if (argb == NULL) {
4620 memcpy_blt(argb, image, 32,
4633 if (argb == NULL) {
4644 pixel = argb[yin * width + xin];
4768 /* Save ARGB versions of these colors */
5038 DBG(("%s(%dx%d): ARGB?=%d, serial->%d, size->%d\n", __FUNCTION__
    [all...]
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_display.c 6035 return (uint32_t *)c->bits->argb;
6056 const uint32_t *argb; local
6077 __DBG(("%s: cursor=%dx%d, pitch=%d, serial=%d, argb?=%d\n", __FUNCTION__,
6174 argb = get_cursor_argb(sna->cursor.ref);
6188 if (argb == NULL) {
6218 __DBG(("%s: Applying affine BLT to ARGB\n", __FUNCTION__));
6219 affine_blt(argb, cursor->image, 32,
6225 memcpy_blt(argb, image, 32,
6238 if (argb == NULL) {
6249 pixel = argb[yin * width + xin]
    [all...]

Completed in 31 milliseconds