| 27 | |
| 28 | public: |
| 29 | Image(const unsigned pWidth, const unsigned pHeight, |
| 30 | const forge::ChannelFormat pFormat, const forge::dtype pDataType) |
| 31 | : mImage(std::make_shared<detail::image_impl>(pWidth, pHeight, pFormat, pDataType)) {} |
| 32 | |
| 33 | Image(const fg_image pOther) { |
| 34 | mImage = reinterpret_cast<Image*>(pOther)->impl(); |
nothing calls this directly
no outgoing calls
no test coverage detected