Home | History | Annotate | Download | only in source

Lines Matching full:dst_rgb

166 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
172 dst_rgb[0] = b;
173 dst_rgb[1] = g;
174 dst_rgb[2] = r;
175 dst_rgb += 3;
180 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) {
186 dst_rgb[0] = r;
187 dst_rgb[1] = g;
188 dst_rgb[2] = b;
189 dst_rgb += 3;
194 void ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
203 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) |
205 dst_rgb += 4;
212 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
224 void ARGBToRGB565DitherRow_C(const uint8* src_argb, uint8* dst_rgb,
236 WRITEWORD(dst_rgb, b0 | (g0 << 5) | (r0 << 11) |
238 dst_rgb += 4;
246 *(uint16*)(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
250 void ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
261 *(uint32*)(dst_rgb) =
264 dst_rgb += 4;
272 *(uint16*)(dst_rgb) =
277 void ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
288 *(uint32*)(dst_rgb) =
291 dst_rgb += 4;
299 *(uint16*)(dst_rgb) =