LibWeb: Remove spammy dbgln about unsupported SVG mask content units
This one was annoying because it was printed before each repaint on pages where this FIXME is relevant.
This commit is contained in:
parent
e3c75d7b6f
commit
bc640b72b1
Notes:
sideshowbarker
2024-07-17 01:06:10 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/bc640b72b1 Pull-request: https://github.com/SerenityOS/serenity/pull/23340
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ RefPtr<Gfx::Bitmap> SVGGraphicsPaintable::calculate_mask(PaintContext& context,
|
||||||
auto mask = graphics_element.mask();
|
auto mask = graphics_element.mask();
|
||||||
VERIFY(mask);
|
VERIFY(mask);
|
||||||
if (mask->mask_content_units() != SVG::MaskContentUnits::UserSpaceOnUse) {
|
if (mask->mask_content_units() != SVG::MaskContentUnits::UserSpaceOnUse) {
|
||||||
dbgln("SVG: maskContentUnits=objectBoundingBox is not supported");
|
// FIXME: Implement support for maskContentUnits=objectBoundingBox
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
auto mask_rect = context.enclosing_device_rect(masking_area);
|
auto mask_rect = context.enclosing_device_rect(masking_area);
|
||||||
|
|
Loading…
Add table
Reference in a new issue