| 51 | static std::shared_ptr<ImageCodec> MakeFromData(const std::string& filePath, |
| 52 | std::shared_ptr<Data> byteData); |
| 53 | explicit JpegCodec(int width, int height, Orientation orientation, std::string filePath, |
| 54 | std::shared_ptr<Data> fileData) |
| 55 | : ImageCodec(width, height, orientation), fileData(std::move(fileData)), |
| 56 | filePath(std::move(filePath)) { |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | } // namespace tgfx |
nothing calls this directly
no outgoing calls
no test coverage detected