| 106 | } |
| 107 | |
| 108 | bool Bitmap::writePixels(const ImageInfo& srcInfo, const void* srcPixels, int dstX, int dstY) { |
| 109 | return Pixmap(*this).writePixels(srcInfo, srcPixels, dstX, dstY); |
| 110 | } |
| 111 | |
| 112 | void Bitmap::clear() { |
| 113 | if (pixelRef == nullptr) { |
no test coverage detected