| 17 | namespace forge |
| 18 | { |
| 19 | Image::Image(const unsigned pWidth, const unsigned pHeight, |
| 20 | const ChannelFormat pFormat, const dtype pDataType) |
| 21 | : mValue(0) |
| 22 | { |
| 23 | fg_image temp = 0; |
| 24 | FG_THROW(fg_create_image(&temp, pWidth, pHeight, pFormat, (fg_dtype)pDataType)); |
| 25 | |
| 26 | std::swap(mValue, temp); |
| 27 | } |
| 28 | |
| 29 | Image::Image(const Image& pOther) |
| 30 | { |
nothing calls this directly
no test coverage detected