| 244 | } |
| 245 | |
| 246 | void Image::reset(Vec2U size, Maybe<PixelFormat> pf) { |
| 247 | reset(size[0], size[1], pf); |
| 248 | } |
| 249 | |
| 250 | void Image::reset(unsigned width, unsigned height, Maybe<PixelFormat> pf) { |
| 251 | if (!pf) |
nothing calls this directly
no test coverage detected