-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathapi.zig
106 lines (94 loc) · 1.79 KB
/
api.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
//! Generated by @thi.ng/wasm-api-bindgen at 2024-08-17T14:24:42.586Z
//! DO NOT EDIT!
const std = @import("std");
const bindgen = @import("wasm-api-bindgen");
pub const LineCap = enum(i32) {
butt,
round,
square,
};
pub const LineJoin = enum(i32) {
bevel,
round,
miter,
};
pub const TextAlign = enum(i32) {
start,
end,
left,
right,
center,
};
pub const TextBaseline = enum(i32) {
top,
hanging,
middle,
alphabetic,
ideographic,
bottom,
};
pub const TextDirection = enum(i32) {
inherit,
ltr,
rtl,
};
pub const FontKerning = enum(i32) {
auto,
normal,
none,
};
pub const FillRule = enum(i32) {
nonzero,
evenodd,
};
pub const PatternRepeat = enum(i32) {
repeat,
repeat_x,
repeat_y,
no_repeat,
};
pub const GlobalCompositeOp = enum(i32) {
color,
color_burn,
color_dodge,
copy,
darken,
destination_atop,
destination_in,
destination_out,
destination_over,
difference,
exclusion,
hard_light,
hue,
lighten,
lighter,
luminosity,
multiply,
overlay,
saturation,
screen,
soft_light,
source_atop,
source_in,
source_out,
source_over,
xor,
};
pub const GradientColorStop = extern struct {
/// Normalized position of this color stop
pos: f32,
/// CSS color string associated with this stop
color: bindgen.ConstStringPtr,
};
/// The dimensions of a piece of text in the canvas, as created by the
/// CanvasRenderingContext2D.measureText() method.
pub const TextMetrics = extern struct {
actualBoundingBoxAscent: f32,
actualBoundingBoxDescent: f32,
actualBoundingBoxLeft: f32,
actualBoundingBoxRight: f32,
fontBoundingBoxAscent: f32,
fontBoundingBoxDescent: f32,
width: f32,
};