mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-05 23:59:53 +00:00
16 lines
326 B
C++
16 lines
326 B
C++
/*
|
|
* Copyright (c) 2024, Nico Weber <thakis@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGfx/ImageFormats/WebPWriter.h>
|
|
|
|
namespace Gfx {
|
|
|
|
ErrorOr<void> WebPWriter::encode(Stream&, Bitmap const&, Options const&)
|
|
{
|
|
return Error::from_string_literal("WebP encoding not yet implemented");
|
|
}
|
|
|
|
}
|