| 106 | } |
| 107 | |
| 108 | VBitmap::VBitmap(size_t width, size_t height, VBitmap::Format format) |
| 109 | { |
| 110 | if (width <= 0 || height <= 0 || format == Format::Invalid) return; |
| 111 | |
| 112 | mImpl = rc_ptr<Impl>(width, height, format); |
| 113 | } |
| 114 | |
| 115 | VBitmap::VBitmap(uchar *data, size_t width, size_t height, size_t bytesPerLine, |
| 116 | VBitmap::Format format) |
nothing calls this directly
no outgoing calls
no test coverage detected