| 13 | Bitmap::Bitmap(SkBitmap&& bitmap) : _bitmap(std::move(bitmap)) {} |
| 14 | |
| 15 | Valdi::BitmapInfo Bitmap::getInfo() const { |
| 16 | const auto& pixmap = _bitmap.pixmap(); |
| 17 | return toBitmapInfo(pixmap.info()); |
| 18 | } |
| 19 | |
| 20 | void* Bitmap::lockBytes() { |
| 21 | const auto& pixmap = _bitmap.pixmap(); |
nothing calls this directly
no test coverage detected