From 523473b8f73d5296684e5a92bf12fdcc45c975f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20P=C3=A9dron?= Date: Fri, 22 Aug 2014 17:05:41 +0000 Subject: [PATCH] vt_vga: Remove a "FIXME" comment; the issue was solved in r270338 MFC after: 1 week --- sys/dev/vt/hw/vga/vt_vga.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/sys/dev/vt/hw/vga/vt_vga.c b/sys/dev/vt/hw/vga/vt_vga.c index 60c553080f16..632b4fff2063 100644 --- a/sys/dev/vt/hw/vga/vt_vga.c +++ b/sys/dev/vt/hw/vga/vt_vga.c @@ -741,16 +741,7 @@ vga_bitblt_text_gfxmode(struct vt_device *vd, const struct vt_window *vw, * VT_VGA_PIXELS_BLOCK; y2 = row * vf->vf_height + vw->vw_offset.tp_row; - /* - * Clip the area to the screen size. - * - * FIXME: The problem with handling the dirty area in character - * cells is that when using different fonts, the dirty area was - * possibly calculated with a different font than the one we use - * here, leading to out-of-screen coordinates. The dirty area - * should be stored in pixels. - */ - + /* Clip the area to the screen size. */ x2 = min(x2, vd->vd_width - 1); y2 = min(y2, vd->vd_height - 1);