From 43554c1b648114f3aa5fc42589ec250d5f1aa34c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 22 Jun 2023 16:07:43 -0700 Subject: [PATCH] font: remove old logging --- src/font/sprite/underline.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/font/sprite/underline.zig b/src/font/sprite/underline.zig index 9fcd5cb11..532ad0f06 100644 --- a/src/font/sprite/underline.zig +++ b/src/font/sprite/underline.zig @@ -24,10 +24,6 @@ pub fn renderGlyph( line_pos: u32, line_thickness: u32, ) !font.Glyph { - // Berkeley: warning: UNDERLINE RENDER width:18 height:37 pos:35 thickness:2 - // Normal: warning: UNDERLINE RENDER width:18 height:38 pos:30 thickness:2 - std.log.warn("UNDERLINE RENDER width:{} height:{} pos:{} thickness:{}", .{ width, height, line_pos, line_thickness }); - // Create the canvas we'll use to draw. We draw the underline in // a full cell size and position it according to "pos". var canvas = try font.sprite.Canvas.init(alloc, width, height);