| 25 | class AtlasCellDecodeTask final : public Task { |
| 26 | public: |
| 27 | AtlasCellDecodeTask(std::shared_ptr<ImageCodec> imageCodec, void* dstPixels, |
| 28 | const ImageInfo& dstInfo, int padding) |
| 29 | : imageCodec(std::move(imageCodec)), dstPixels(dstPixels), dstInfo(dstInfo), |
| 30 | padding(padding) { |
| 31 | } |
| 32 | |
| 33 | protected: |
| 34 | void onExecute() override; |
nothing calls this directly
no outgoing calls
no test coverage detected