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

LibWeb: Implement CanvasRenderingContext2D.setTransform

This commit is contained in:
Luke Wilde 2022-04-10 18:46:30 +01:00 committed by Andreas Kling
parent df7a83ac0e
commit 329e740c85
3 changed files with 16 additions and 0 deletions

View file

@ -99,6 +99,7 @@ public:
NonnullRefPtr<CanvasGradient> create_conic_gradient(double start_angle, double x, double y);
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);
private:
explicit CanvasRenderingContext2D(HTMLCanvasElement&);