Home | History | Annotate | Download | only in enc

Lines Matching full:argb

83         if (is_transparent_argb_area(pic->argb + off, pic->argb_stride, SIZE)) {
85 argb_value = pic->argb[off];
88 flatten_argb(pic->argb + off, argb_value, pic->argb_stride, SIZE);
127 uint32_t* argb;
131 argb = pic->argb;
135 if ((argb[x] & 0xff000000) == 0) {
136 argb[x] = 0x00000000;
139 argb += pic->argb_stride;
199 uint32_t* argb = pic->argb;
203 const int alpha = (argb[x] >> 24) & 0xff;
206 int r = (argb[x] >> 16) & 0xff;
207 int g = (argb[x] >> 8) & 0xff;
208 int b = (argb[x] >> 0) & 0xff;
212 argb[x] = MakeARGB32(r, g, b);
214 argb[x] = background;
218 argb += pic->argb_stride;