| 74 | int height; |
| 75 | |
| 76 | Canvas(fl::span<RGB_T> buf, int w, int h) FL_NOEXCEPT |
| 77 | : ownership(buf), pixels(buf.data()), width(w), height(h) {} |
| 78 | Canvas(fl::shared_ptr<RGB_T> ptr, int w, int h) FL_NOEXCEPT |
| 79 | : ownership(ptr), pixels(ptr.get()), width(w), height(h) {} |
| 80 |