Remove obsolete TODOs in the NanoVG demo

This commit is contained in:
Patrick Walton 2020-04-11 19:07:37 -07:00
parent 15101e90dd
commit def7da5de2
1 changed files with 0 additions and 3 deletions

View File

@ -51,8 +51,6 @@ use jemallocator;
#[global_allocator] #[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
// TODO(pcwalton): See if we can reduce the amount of code by using the canvas shadow feature.
const PI_2: f32 = PI * 2.0; const PI_2: f32 = PI * 2.0;
const FRAC_PI_2_3: f32 = PI * 2.0 / 3.0; const FRAC_PI_2_3: f32 = PI * 2.0 / 3.0;
@ -994,7 +992,6 @@ fn draw_button(context: &mut CanvasRenderingContext2D,
context.set_stroke_style(rgbau(0, 0, 0, 48)); context.set_stroke_style(rgbau(0, 0, 0, 48));
context.stroke_path(create_rounded_rect_path(rect.contract(0.5), CORNER_RADIUS - 0.5)); context.stroke_path(create_rounded_rect_path(rect.contract(0.5), CORNER_RADIUS - 0.5));
// TODO(pcwalton): Icon.
context.set_font(FONT_NAME_BOLD); context.set_font(FONT_NAME_BOLD);
context.set_font_size(17.0); context.set_font_size(17.0);
let text_width = context.measure_text(text).width; let text_width = context.measure_text(text).width;