Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Aug 2014 17:05:42 +0000 (UTC)
From:      Jean-Sebastien Pedron <dumbbell@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r270341 - head/sys/dev/vt/hw/vga
Message-ID:  <201408221705.s7MH5gH1048658@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dumbbell
Date: Fri Aug 22 17:05:41 2014
New Revision: 270341
URL: http://svnweb.freebsd.org/changeset/base/270341

Log:
  vt_vga: Remove a "FIXME" comment; the issue was solved in r270338
  
  MFC after:	1 week

Modified:
  head/sys/dev/vt/hw/vga/vt_vga.c

Modified: head/sys/dev/vt/hw/vga/vt_vga.c
==============================================================================
--- head/sys/dev/vt/hw/vga/vt_vga.c	Fri Aug 22 16:30:26 2014	(r270340)
+++ head/sys/dev/vt/hw/vga/vt_vga.c	Fri Aug 22 17:05:41 2014	(r270341)
@@ -741,16 +741,7 @@ vga_bitblt_text_gfxmode(struct vt_device
 	    * 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);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408221705.s7MH5gH1048658>