1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

LibGfx: Provide an implementation for ImageDecoderPlugin::icc_data()

This commit is contained in:
Lucas CHOLLET 2023-10-28 18:18:14 -04:00 committed by Sam Atkins
parent 4f3945024a
commit e721c74598
15 changed files with 1 additions and 44 deletions

View file

@ -82,7 +82,6 @@ public:
virtual IntSize size() override;
virtual ErrorOr<ImageFrameDescriptor> frame(size_t index, Optional<IntSize> ideal_size = {}) override;
virtual ErrorOr<Optional<ReadonlyBytes>> icc_data() override { return OptionalNone {}; }
virtual bool is_vector() override { return true; }
virtual ErrorOr<VectorImageFrameDescriptor> vector_frame(size_t index) override;