aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h
diff options
context:
space:
mode:
authorphunkyfish <phunkyfish@gmail.com>2020-10-05 14:32:08 +0100
committerGitHub <noreply@github.com>2020-10-05 14:32:08 +0100
commit7bc88ff3cbf18fe3fdf5bf5359466ceb82ec1370 (patch)
tree64cacb2b5ef91ce100433ebe79d9a242f8e5430f /tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h
parent784f0b0e539c5d2eaa495402d26813bbcf8959de (diff)
parent3874e487e512c055f535ef27b100e76b55bdf453 (diff)
Merge pull request #18362 from basilgello/simplify-texturepacker
Simplify TexturePacker
Diffstat (limited to 'tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h')
-rw-r--r--tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h b/tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h
index 30430e79f9..bbf23ba7b3 100644
--- a/tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h
+++ b/tools/depends/native/TexturePacker/src/decoder/JPGDecoder.h
@@ -28,7 +28,7 @@ class JPGDecoder : public IDecoder
~JPGDecoder() override = default;
bool CanDecode(const std::string &filename) override;
bool LoadFile(const std::string &filename, DecodedFrames &frames) override;
- void FreeDecodedFrames(DecodedFrames &frames) override;
+ void FreeDecodedFrame(DecodedFrame &frame) override;
const char* GetImageFormatName() override { return "JPG"; }
const char* GetDecoderName() override { return "libjpeg"; }
protected: