mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:08:10 +00:00
LibWeb: Implement CanvasRenderingContext2D.transform
This commit is contained in:
parent
40f584a2bb
commit
df7a83ac0e
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