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

LibWeb: Extract CanvasFillStrokeStyles class from CRC2D

This commit is contained in:
Sam Atkins 2022-08-12 17:52:43 +01:00 committed by Andreas Kling
parent afabd613bd
commit aa3cb8b425
3 changed files with 16 additions and 19 deletions

View file

@ -78,10 +78,6 @@ public:
RefPtr<TextMetrics> measure_text(String const& text);
NonnullRefPtr<CanvasGradient> create_radial_gradient(double x0, double y0, double r0, double x1, double y1, double r1);
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 clip();
private: