| 198 | } |
| 199 | |
| 200 | Image Image::filled(Vec2U size, Vec4B color, PixelFormat pf) { |
| 201 | Image image(size, pf); |
| 202 | image.fill(color); |
| 203 | return image; |
| 204 | } |
| 205 | |
| 206 | Image::Image(PixelFormat pf) |
| 207 | : m_data(nullptr), m_width(0), m_height(0), m_pixelFormat(pf) {} |