svn commit: r270341 - head/sys/dev/vt/hw/vga

Jean-Sebastien Pedron dumbbell at FreeBSD.org
Fri Aug 22 17:05:42 UTC 2014


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);
 


More information about the svn-src-all mailing list