| 18 | /* ----- Common ----- */ |
| 19 | |
| 20 | Image::Image(const Extent3D& extent, const ImageFormat format, const DataType dataType) : |
| 21 | extent_ { extent }, |
| 22 | format_ { format }, |
| 23 | dataType_ { dataType }, |
| 24 | data_ { GenerateEmptyByteBuffer(GetDataSize(), false) } |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | Image::Image(const Extent3D& extent, const ImageFormat format, const DataType dataType, const ColorRGBAd& fillColor) : |
| 29 | extent_ { extent }, |
nothing calls this directly
no test coverage detected