Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 4b15d56

Browse files
committed
et format
1 parent 49f84db commit 4b15d56

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

lib/web_ui/skwasm/paint.cpp

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@
1212

1313
using namespace Skwasm;
1414

15-
SKWASM_EXPORT SkPaint* paint_create(
16-
bool isAntiAlias,
17-
SkBlendMode blendMode,
18-
SkColor color,
19-
SkPaint::Style style,
20-
SkScalar strokeWidth,
21-
SkPaint::Cap strokeCap,
22-
SkPaint::Join strokeJoin,
23-
SkScalar strokeMiterLimit
24-
) {
15+
SKWASM_EXPORT SkPaint* paint_create(bool isAntiAlias,
16+
SkBlendMode blendMode,
17+
SkColor color,
18+
SkPaint::Style style,
19+
SkScalar strokeWidth,
20+
SkPaint::Cap strokeCap,
21+
SkPaint::Join strokeJoin,
22+
SkScalar strokeMiterLimit) {
2523
auto paint = new SkPaint();
2624
paint->setAntiAlias(isAntiAlias);
2725
paint->setBlendMode(blendMode);

0 commit comments

Comments
 (0)