Home | History | Annotate | Download | only in source

Lines Matching full:dst_rgb

142 void ARGBToRGBARow_C(const uint8* src_argb, uint8* dst_rgb, int width) {
148 dst_rgb[0] = a;
149 dst_rgb[1] = b;
150 dst_rgb[2] = g;
151 dst_rgb[3] = r;
152 dst_rgb += 4;
157 void ARGBToRGB24Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
162 dst_rgb[0] = b;
163 dst_rgb[1] = g;
164 dst_rgb[2] = r;
165 dst_rgb += 3;
170 void ARGBToRAWRow_C(const uint8* src_argb, uint8* dst_rgb, int width) {
175 dst_rgb[0] = r;
176 dst_rgb[1] = g;
177 dst_rgb[2] = b;
178 dst_rgb += 3;
184 void ARGBToRGB565Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
192 *reinterpret_cast<uint32*>(dst_rgb) = b0 | (g0 << 5) | (r0 << 11) |
194 dst_rgb += 4;
201 *reinterpret_cast<uint16*>(dst_rgb) = b0 | (g0 << 5) | (r0 << 11);
205 void ARGBToARGB1555Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
215 *reinterpret_cast<uint32*>(dst_rgb) =
218 dst_rgb += 4;
226 *reinterpret_cast<uint16*>(dst_rgb) =
231 void ARGBToARGB4444Row_C(const uint8* src_argb, uint8* dst_rgb, int width) {
241 *reinterpret_cast<uint32*>(dst_rgb) =
244 dst_rgb += 4;
252 *reinterpret_cast<uint16*>(dst_rgb) =