1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:57:44 +00:00

LibWeb: Implement CanvasRenderingContext2D.resetTransform

This commit is contained in:
Luke Wilde 2022-04-10 18:47:01 +01:00 committed by Andreas Kling
parent 329e740c85
commit 27cc8742ce
3 changed files with 9 additions and 0 deletions

View file

@ -100,6 +100,7 @@ public:
void transform(double a, double b, double c, double d, double e, double f);
void set_transform(double a, double b, double c, double d, double e, double f);
void reset_transform();
private:
explicit CanvasRenderingContext2D(HTMLCanvasElement&);