Lines Matching refs:pixel
925 uint32_t pixel;
930 pixel = nouveau_bo_rd32(src, i*64 + j);
932 nouveau_bo_wr16(dst, i*width + j, (pixel & 0x80000000) >> 16
933 | (pixel & 0xf80000) >> 9
934 | (pixel & 0xf800) >> 6
935 | (pixel & 0xf8) >> 3);
943 uint32_t pixel;
953 pixel = nouveau_bo_rd32(src, i);
960 alpha = pixel >> 24;
962 pixel = (pixel & 0x00ffffff) | ((alpha + 1) << 24);
969 pixel = ((pixel & 0x000000ff) << 24) |
970 ((pixel & 0x0000ff00) << 8) |
971 ((pixel & 0x00ff0000) >> 8) |
972 ((pixel & 0xff000000) >> 24);
977 nouveau_bo_wr32(dst, i, pixel);