mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 07:37:03 +00:00
LibWeb: Implement CanvasRenderingContext2D.setTransform
This commit is contained in:
parent
df7a83ac0e
commit
329e740c85
Notes:
sideshowbarker
2024-07-17 14:11:09 +09:00
Author: https://github.com/Lubrsi
Commit: 329e740c85
Pull-request: https://github.com/SerenityOS/serenity/pull/13604
3 changed files with 16 additions and 0 deletions
|
@ -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&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue