From 1922fe38408cb697a3c0aac97e18126a172a9bb6 Mon Sep 17 00:00:00 2001 From: jpirnay Date: Sat, 21 Feb 2026 12:37:54 +0100 Subject: [PATCH] clang-format --- lib/GfxRenderer/GfxRenderer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/GfxRenderer/GfxRenderer.cpp b/lib/GfxRenderer/GfxRenderer.cpp index 8a20e7de..1125d548 100644 --- a/lib/GfxRenderer/GfxRenderer.cpp +++ b/lib/GfxRenderer/GfxRenderer.cpp @@ -302,9 +302,9 @@ static void renderGlyphFastBW(uint8_t* const frameBuffer, const uint8_t* const b } } -static inline uint8_t build2BitRowMask(const uint8_t* const bitmap, const int rowStartPixel, - const int glyphXStartOrEnd, const int count, - const bool reverseXInChunk, const GfxRenderer::RenderMode renderMode) { +static inline uint8_t build2BitRowMask(const uint8_t* const bitmap, const int rowStartPixel, const int glyphXStartOrEnd, + const int count, const bool reverseXInChunk, + const GfxRenderer::RenderMode renderMode) { // drawMask uses raw 2-bit glyph values directly from font bitmaps: // raw 0=white, 1=light gray, 2=dark gray, 3=black. // Bit N set means: draw/update when raw==N.