Lines Matching refs:pixel
932 uint32_t pixel;
937 pixel = nouveau_bo_rd32(src, i*64 + j);
939 nouveau_bo_wr16(dst, i*width + j, (pixel & 0x80000000) >> 16
940 | (pixel & 0xf80000) >> 9
941 | (pixel & 0xf800) >> 6
942 | (pixel & 0xf8) >> 3);
950 uint32_t pixel;
960 pixel = nouveau_bo_rd32(src, i);
967 alpha = pixel >> 24;
969 pixel = (pixel & 0x00ffffff) | ((alpha + 1) << 24);
976 pixel = ((pixel & 0x000000ff) << 24) |
977 ((pixel & 0x0000ff00) << 8) |
978 ((pixel & 0x00ff0000) >> 8) |
979 ((pixel & 0xff000000) >> 24);
984 nouveau_bo_wr32(dst, i, pixel);