Everywhere: Fix a bunch of typos

This commit is contained in:
Linus Groh 2022-05-29 11:50:10 +01:00 committed by Andreas Kling
commit 173dcfb7cb
Notes: sideshowbarker 2024-07-17 10:36:21 +09:00
17 changed files with 23 additions and 23 deletions

View file

@ -247,7 +247,7 @@ ALWAYS_INLINE void Device::rasterize(Gfx::IntRect& render_bounds, CB1 set_covera
auto const qy1 = render_bounds_bottom & ~1;
// Rasterize all quads
// FIXME: this could be embarrasingly parallel
// FIXME: this could be embarrassingly parallel
for (int qy = qy0; qy <= qy1; qy += 2) {
for (int qx = qx0; qx <= qx1; qx += 2) {
PixelQuad quad;