Lines Matching refs:packed
35 /* Clear colours are packed as the internal format of the tilebuffer, looked up
42 * tilebuffer for dithering. These have a packed fixed-point representation:
50 pan_pack_color_32(uint32_t *packed, uint32_t v)
53 packed[i] = v;
94 pan_pack_raw(uint32_t *packed, const union pipe_color_union *color, enum pipe_format format)
104 pan_pack_color_32(packed, s | (s << 16));
106 pan_pack_color_32(packed, out.ui[0] | (out.ui[0] << 16));
108 pan_pack_color_32(packed, out.ui[0]);
110 memcpy(packed + 0, out.ui, 8);
111 memcpy(packed + 2, out.ui, 8);
113 memcpy(packed, out.ui, 16);
118 pan_pack_color(uint32_t *packed, const union pipe_color_union *color,
126 pan_pack_raw(packed, color, format);
165 pan_pack_color_32(packed, ur | ug | ub | ua);