mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
LibWeb: Implement CanvasRenderingContext2D.transform
This commit is contained in:
parent
40f584a2bb
commit
df7a83ac0e
Notes:
sideshowbarker
2024-07-17 14:11:13 +09:00
Author: https://github.com/Lubrsi
Commit: df7a83ac0e
Pull-request: https://github.com/SerenityOS/serenity/pull/13604
3 changed files with 19 additions and 0 deletions
|
@ -55,4 +55,7 @@ interface CanvasRenderingContext2D {
|
|||
CanvasGradient createLinearGradient(double x0, double y0, double x1, double y1);
|
||||
CanvasGradient createConicGradient(double startAngle, double x, double y);
|
||||
|
||||
// FIXME: All these `double`s should be `unrestricted double`
|
||||
undefined transform(double a, double b, double c, double d, double e, double f);
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue