| 21 | struct Bitmap |
| 22 | { |
| 23 | Bitmap() = default; |
| 24 | Bitmap(int w, int h, int comp, eBitmapFormat fmt) |
| 25 | :w_(w), h_(h), comp_(comp), fmt_(fmt), data_(w * h * comp * getBytesPerComponent(fmt)) |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected