about summary refs log tree commit diff stats
path: root/src/img
Commit message (Expand)AuthorAgeFilesLines
* img, loader: add image resizing, misc fixesbptato2024-06-281-1/+2
* img: use stb_image, drop zlib as dependencybptato2024-06-202-9/+15
* img, loader: separate out png codec into cgi, misc improvementsbptato2024-06-203-512/+6
* css/values -> css/cssvaluesbptato2024-05-161-1/+1
* img: rename SEGMENT_*bptato2024-05-091-16/+15
* png: fix check in readU8bptato2024-04-271-1/+1
* png: fix indexed color with tRNSbptato2024-04-271-5/+7
* color: RGBAColor -> ARGBColorbptato2024-04-263-21/+21
* Remove unnecessary unsigned castsbptato2024-04-261-16/+16
* png: fix off by onebptato2024-04-251-3/+1
* Initial image supportbptato2024-04-251-18/+49
* Update code stylebptato2024-04-174-102/+102
* Remove unnecessary std/math importsbptato2024-04-081-5/+3
* Allow non-RGB colors in CSSbptato2024-02-241-1/+1
* Use errDOMException template everywherebptato2024-01-111-6/+6
* Use std/* imports everywherebptato2024-01-073-6/+6
* Compile with styleCheck:usagesbptato2023-12-281-2/+2
* warn on eprint in release modebptato2023-10-211-1/+2
* move around more modulesbptato2023-09-141-1/+1
* path: remove ellipseLinesbptato2023-08-281-26/+0
* javascript: refactorbptato2023-08-281-1/+1
* png: print zstream errorsbptato2023-07-041-1/+5
* painter: fix off by one error in getCharBmpbptato2023-07-041-2/+2
* png: fix grayscale regressionbptato2023-06-291-1/+1
* Move CanvasFillRule from bitmap to painterbptato2023-06-262-4/+4
* png: fix 4 bit grayscale & <8 bit indexed colorbptato2023-06-251-6/+17
* Get rid of the .jserr pragmabptato2023-06-191-12/+17
* Make Result.text, json return promisebptato2023-06-131-1/+0
* Fix various layout bugs, prepare for image supportbptato2023-06-121-3/+3
* Add indexed color, other png improvementsbptato2023-06-091-22/+71
* Refactor bitmap, add png color modesbptato2023-06-063-591/+623
* Fix stupid overflowbptato2023-06-051-3/+3
* Fix 16bit grayscale bugbptato2023-06-051-1/+1
* Add support for canvas and multipartbptato2023-06-052-0/+1050
alt'>
f186e887 ^


a6836d5d ^

f186e887 ^


a6836d5d ^




5eb98930 ^
a6836d5d ^





57c2dff1 ^






a6836d5d ^

57c2dff1 ^




a6836d5d ^

57c2dff1 ^




a6836d5d ^

57c2dff1 ^



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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241