mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 01:51:03 +09:00

This has come up several times during code review, so let's just enforce it using a new clang-format 20 option.
44 lines
690 B
C++
44 lines
690 B
C++
/*
|
|
* Copyright (c) 2024, Lucien Fiorini <lucienfiorini@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Variant.h>
|
|
#include <LibGfx/Color.h>
|
|
|
|
namespace Gfx {
|
|
|
|
struct BlurFilter {
|
|
float radius;
|
|
};
|
|
|
|
struct DropShadowFilter {
|
|
float offset_x;
|
|
float offset_y;
|
|
float radius;
|
|
Gfx::Color color;
|
|
};
|
|
|
|
struct HueRotateFilter {
|
|
float angle_degrees;
|
|
};
|
|
|
|
struct ColorFilter {
|
|
enum class Type {
|
|
Brightness,
|
|
Contrast,
|
|
Grayscale,
|
|
Invert,
|
|
Opacity,
|
|
Saturate,
|
|
Sepia
|
|
} type;
|
|
float amount;
|
|
};
|
|
|
|
using Filter = Variant<BlurFilter, DropShadowFilter, HueRotateFilter, ColorFilter>;
|
|
|
|
}
|