mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:47:44 +00:00
LibWeb: Add missing hue-rotate()
filter spec comment
This commit is contained in:
parent
5a832c0326
commit
b877d71db7
1 changed files with 3 additions and 0 deletions
|
@ -87,6 +87,9 @@ void apply_filter_list(Gfx::Bitmap& target_bitmap, Layout::Node const& node, Spa
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[&](CSS::Filter::HueRotate const& hue_rotate) {
|
[&](CSS::Filter::HueRotate const& hue_rotate) {
|
||||||
|
// Applies a hue rotation on the input image.
|
||||||
|
// The passed parameter defines the number of degrees around the color circle the input samples will be adjusted.
|
||||||
|
// A value of 0deg leaves the input unchanged. Implementations must not normalize this value in order to allow animations beyond 360deg.
|
||||||
apply_color_filter(Gfx::HueRotateFilter { hue_rotate.angle_degrees() });
|
apply_color_filter(Gfx::HueRotateFilter { hue_rotate.angle_degrees() });
|
||||||
},
|
},
|
||||||
[&](CSS::Filter::DropShadow const&) {
|
[&](CSS::Filter::DropShadow const&) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue