* Scale by a factor of 2x3 a row of pixels of 8 bits. * \note Like scale2x_8_def(); */
| 580 | * \note Like scale2x_8_def(); |
| 581 | */ |
| 582 | void scale2x3_8_def(scale2x_uint8* dst0, scale2x_uint8* dst1, scale2x_uint8* dst2, const scale2x_uint8* src0, const scale2x_uint8* src1, const scale2x_uint8* src2, unsigned count) |
| 583 | { |
| 584 | #ifdef USE_SCALE_RANDOMWRITE |
| 585 | scale2x_8_def_whole(dst0, dst2, src0, src1, src2, count); |
| 586 | scale2x_8_def_center(dst1, src0, src1, src2, count); |
| 587 | #else |
| 588 | scale2x_8_def_border(dst0, src0, src1, src2, count); |
| 589 | scale2x_8_def_center(dst1, src0, src1, src2, count); |
| 590 | scale2x_8_def_border(dst2, src2, src1, src0, count); |
| 591 | #endif |
| 592 | } |
| 593 | |
| 594 | /** |
| 595 | * Scale by a factor of 2x3 a row of pixels of 16 bits. |
no test coverage detected