| 217 | } |
| 218 | |
| 219 | void CopyRGBA(uint8_t* dst, int dstStride, const uint8_t* src, int srcStride, int width, |
| 220 | int height) { |
| 221 | CopyPlane(dst, dstStride, src, srcStride, width * 4, height); |
| 222 | } |
| 223 | |
| 224 | bool ImageHasAlpha(uint8_t* data, int stride, int width, int height) { |
| 225 |
no test coverage detected