spelling: supported

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:47:53 -05:00
parent bcf5e6d9f9
commit a169a706b7
6 changed files with 7 additions and 7 deletions

View file

@ -195,7 +195,7 @@ This function affects subsequent calls to \ref rand() to produce a sequence of n
\param category The category of routines for which to set the locale \param category The category of routines for which to set the locale
\param locale The ISO formatted locale to use, or "" for the system locale \param locale The ISO formatted locale to use, or "" for the system locale
\return the locale after the change is applied, NULL on failure (e.g. unsuported category) \return the locale after the change is applied, NULL on failure (e.g. unsupported category)
\note Currently, we only support two categories: LC_ALL and LC_TIME \note Currently, we only support two categories: LC_ALL and LC_TIME
@} @}

View file

@ -239,7 +239,7 @@ void graphics_fill_round_rect(GContext* ctx, const GRect *rect, uint16_t radius,
#if PBL_COLOR #if PBL_COLOR
if (ctx->draw_state.antialiased) { if (ctx->draw_state.antialiased) {
// Antialiased (not suppported on 1-bit color) // Antialiased (not supported on 1-bit color)
prv_fill_rect_aa(ctx, rect, radius, corner_mask, ctx->draw_state.fill_color); prv_fill_rect_aa(ctx, rect, radius, corner_mask, ctx->draw_state.fill_color);
return; return;
} }
@ -437,7 +437,7 @@ void graphics_draw_round_rect(GContext* ctx, const GRect *rect, uint16_t radius)
prv_draw_round_rect_aa_stroked(ctx, rect, radius, ctx->draw_state.stroke_width); prv_draw_round_rect_aa_stroked(ctx, rect, radius, ctx->draw_state.stroke_width);
return; return;
} else { } else {
// Antialiased and Stroke Width == 1 (not suppported on 1-bit color) // Antialiased and Stroke Width == 1 (not supported on 1-bit color)
// Note: stroke width == 2 is rounded down to stroke width of 1 // Note: stroke width == 2 is rounded down to stroke width of 1
prv_draw_round_rect_aa(ctx, rect, radius); prv_draw_round_rect_aa(ctx, rect, radius);
return; return;

View file

@ -459,7 +459,7 @@ void graphics_circle_quadrant_draw(GContext* ctx, GPoint p, uint16_t radius, GCo
graphics_circle_quadrant_draw_stroked_aa(ctx, p, radius, stroke_width, quadrant); graphics_circle_quadrant_draw_stroked_aa(ctx, p, radius, stroke_width, quadrant);
return; return;
} else { } else {
// Antialiased and Stroke Width == 1 (not suppported on 1-bit color) // Antialiased and Stroke Width == 1 (not supported on 1-bit color)
graphics_circle_quadrant_draw_1px_aa(ctx, p, radius, quadrant); graphics_circle_quadrant_draw_1px_aa(ctx, p, radius, quadrant);
return; return;
} }

View file

@ -774,7 +774,7 @@ void graphics_draw_line(GContext* ctx, GPoint p0, GPoint p1) {
graphics_line_draw_stroked_aa(ctx, p0, p1, ctx->draw_state.stroke_width); graphics_line_draw_stroked_aa(ctx, p0, p1, ctx->draw_state.stroke_width);
return; return;
} else { } else {
// Antialiased and Stroke Width == 1 (not suppported on 1-bit color) // Antialiased and Stroke Width == 1 (not supported on 1-bit color)
graphics_line_draw_1px_aa(ctx, p0, p1); graphics_line_draw_1px_aa(ctx, p0, p1);
return; return;
} }

View file

@ -251,7 +251,7 @@ void test_bitblt__8bit_comptint_blend(void) {
(GColor8){.a = 3, .r = 2, .g = 1, .b = 0} (GColor8){.a = 3, .r = 2, .g = 1, .b = 0}
}; };
// Test image with four pixels of all our suported alpha values // Test image with four pixels of all our supported alpha values
GBitmap test_bmp = (GBitmap){ GBitmap test_bmp = (GBitmap){
.addr = test_blend_colors, .addr = test_blend_colors,
.row_size_bytes = 4, .row_size_bytes = 4,

View file

@ -1186,7 +1186,7 @@ def mfg_image_spi(ctx):
prf_begin = 0x200000 prf_begin = 0x200000
image_size = 0x800000 image_size = 0x800000
else: else:
ctx.fatal("MFG Image not suppored for board: {}".format(ctx.env.BOARD)) ctx.fatal("MFG Image not supported for board: {}".format(ctx.env.BOARD))
spi_flash_path = _create_spi_flash_image(ctx, 'mfg_prf_image.bin') spi_flash_path = _create_spi_flash_image(ctx, 'mfg_prf_image.bin')
mfg_spi_img_file = open(spi_flash_path, 'wb') mfg_spi_img_file = open(spi_flash_path, 'wb')