| 22 | { |
| 23 | std::unique_ptr<uint8_t[]> _memory; |
| 24 | LumImage(std::unique_ptr<uint8_t[]>&& data, int w, int h) |
| 25 | : ImageView(data.get(), w, h, ImageFormat::Lum), _memory(std::move(data)) |
| 26 | {} |
| 27 | |
| 28 | public: |
| 29 | LumImage() : ImageView(nullptr, 0, 0, ImageFormat::Lum) {} |