LibWeb/SVG: Stub SVGTransform.setScale

This commit is contained in:
Jamie Mansfield 2024-05-06 12:19:07 +01:00 committed by Andrew Kaster
parent 5d5f043631
commit effb696eef
Notes: sideshowbarker 2024-07-17 01:23:08 +09:00
3 changed files with 10 additions and 1 deletions

View file

@ -51,4 +51,12 @@ void SVGTransform::set_translate(float tx, float ty)
dbgln("FIXME: Implement SVGTransform::set_translate(float tx, float ty)");
}
// https://svgwg.org/svg2-draft/single-page.html#coords-__svg__SVGTransform__setScale
void SVGTransform::set_scale(float sx, float sy)
{
(void)sx;
(void)sy;
dbgln("FIXME: Implement SVGTransform::set_scale(float sx, float sy)");
}
}