| 23 | |
| 24 | namespace tgfx { |
| 25 | Bitmap::Bitmap(int width, int height, bool alphaOnly, bool tryHardware) { |
| 26 | allocPixels(width, height, alphaOnly, tryHardware); |
| 27 | } |
| 28 | |
| 29 | Bitmap::Bitmap(const Bitmap& src) : _info(src._info), pixelRef(src.pixelRef) { |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected