1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:27:35 +00:00

LibWeb: Implement CanvasRenderingContext2D.transform

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

View file

@ -98,6 +98,8 @@ public:
NonnullRefPtr<CanvasGradient> create_linear_gradient(double x0, double y0, double x1, double y1);
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);
private:
explicit CanvasRenderingContext2D(HTMLCanvasElement&);