Skip to content

Commit

Permalink
JANITORIAL: Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bonki committed Mar 23, 2018
1 parent 313eeca commit d36a9ce
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions graphics/VectorRendererSpec.cpp
Expand Up @@ -448,16 +448,16 @@ void colorFill(PixelType *first, PixelType *last, PixelType color) {
return;
int n = (count + 7) >> 3;
switch (count % 8) {
case 0: do {
*first++ = color; // fall through
case 7: *first++ = color; // fall through
case 6: *first++ = color; // fall through
case 5: *first++ = color; // fall through
case 4: *first++ = color; // fall through
case 3: *first++ = color; // fall through
case 2: *first++ = color; // fall through
case 0: do {
*first++ = color; // fall through
case 7: *first++ = color; // fall through
case 6: *first++ = color; // fall through
case 5: *first++ = color; // fall through
case 4: *first++ = color; // fall through
case 3: *first++ = color; // fall through
case 2: *first++ = color; // fall through
case 1: *first++ = color;
} while (--n > 0);
} while (--n > 0);
}
}

Expand Down Expand Up @@ -487,16 +487,16 @@ void colorFillClip(PixelType *first, PixelType *last, PixelType color, int realX

int n = (count + 7) >> 3;
switch (count % 8) {
case 0: do {
*first++ = color; // fall through
case 7: *first++ = color; // fall through
case 6: *first++ = color; // fall through
case 5: *first++ = color; // fall through
case 4: *first++ = color; // fall through
case 3: *first++ = color; // fall through
case 2: *first++ = color; // fall through
case 0: do {
*first++ = color; // fall through
case 7: *first++ = color; // fall through
case 6: *first++ = color; // fall through
case 5: *first++ = color; // fall through
case 4: *first++ = color; // fall through
case 3: *first++ = color; // fall through
case 2: *first++ = color; // fall through
case 1: *first++ = color;
} while (--n > 0);
} while (--n > 0);
}
}

Expand Down

0 comments on commit d36a9ce

Please sign in to comment.