Differences From Artifact [d7e6269b15]:
- File src/tools.mm — part of check-in [0097baa3a7] at 2025-03-08 01:09:36 on branch trunk — Remove memory pool (user: js, size: 425) [annotate] [blame] [check-ins using]
To Artifact [22d3464477]:
- File src/tools.mm — part of check-in [6f5dd50626] at 2025-03-08 02:38:40 on branch trunk — Improve clang-format (user: js, size: 424) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
13 14 15 16 17 18 19 | return; loop(w, length) loop(i, stride / 2) { uchar *p = (uchar *)memory + w * stride; uchar t = p[i]; p[i] = p[stride - i - 1]; p[stride - i - 1] = t; | < > | 13 14 15 16 17 18 19 20 21 | return; loop(w, length) loop(i, stride / 2) { uchar *p = (uchar *)memory + w * stride; uchar t = p[i]; p[i] = p[stride - i - 1]; p[stride - i - 1] = t; } } |