LibGfx/WebPWriter: Add a toggle for disabling individual transforms

This commit is contained in:
Nico Weber
2024-05-29 18:24:41 -04:00
committed by Jelle Raaijmakers
parent 4a327d98a4
commit 533b29dde7
Notes: sideshowbarker 2024-07-17 20:58:35 +09:00
5 changed files with 22 additions and 11 deletions

View File

@@ -9,6 +9,7 @@
#include <AK/Error.h>
#include <LibGfx/Color.h>
#include <LibGfx/Forward.h>
#include <LibGfx/ImageFormats/WebPWriterLossless.h>
#include <LibGfx/Point.h>
namespace Gfx {
@@ -16,6 +17,7 @@ namespace Gfx {
class AnimationWriter;
struct WebPEncoderOptions {
VP8LEncoderOptions vp8l_options;
Optional<ReadonlyBytes> icc_data;
};