From 1d5b0658334c6f63b99f1463d50b10cd897d664a Mon Sep 17 00:00:00 2001 From: Fabrice Date: Fri, 13 Feb 2026 07:13:45 +0100 Subject: dont need no more --- src/wayclock.cc | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/wayclock.cc') diff --git a/src/wayclock.cc b/src/wayclock.cc index f9d00f4..bd8491e 100644 --- a/src/wayclock.cc +++ b/src/wayclock.cc @@ -101,23 +101,6 @@ int main() { wayc_panic("Failed to initialize font"); wayc_defer(wayc_font_deinit(&font)); - struct glyph_s glyph_A = {}; - if (wayc_font_render(&font, (codepoint_t)'A', &glyph_A) != FONT_ERROR_NONE) - wayc_panic("Failed to render glyph"); - glyph_print(&glyph_A); - - struct glyph_s glyph_X = {}; - if (wayc_font_render(&font, (codepoint_t)'X', &glyph_X) != FONT_ERROR_NONE) - wayc_panic("Failed to render glyph"); - glyph_print(&glyph_X); - - struct glyph_s glyph_0 = {}; - if (wayc_font_render(&font, (codepoint_t)'0', &glyph_0) != FONT_ERROR_NONE) - wayc_panic("Failed to render glyph"); - glyph_print(&glyph_0); - - wayc_font_flush(&font); - struct app_s app = {&renderer}; while (wayc_eventloop_running(&loop)) { -- cgit v1.2.3