Home | History | Annotate | only in /src/sys/dev/rasops
Up to higher level directory
NameDateSize
files.rasops11-Jan-20121.1K
rasops.c15-May-202238.3K
rasops.h25-Jul-20258.6K
rasops1-4_putchar.h10-Aug-20197.3K
rasops1.c10-Aug-20196.9K
rasops15.c14-Aug-20194.7K
rasops1_putchar_width.h10-Aug-20194K
rasops2.c29-May-20224.9K
rasops24.c14-Aug-20199.2K
rasops32.c14-Aug-20194.4K
rasops4.c14-Aug-20194.7K
rasops8.c14-Aug-20194.6K
rasops_bitops.h10-Aug-20198.6K
rasops_masks.c10-Aug-201920.5K
rasops_masks.h10-Aug-20193.5K
rasops_putchar.h10-Aug-20196.1K
rasops_putchar_width.h14-Aug-20198.2K
README02-Aug-2019639

README

      1 $NetBSD: README,v 1.7 2019/08/02 05:04:02 rin Exp $
      2 
      3 This directory contains `rasops', a set of raster operations intended to
      4 replace the dev/rcons/raster stuff for both wscons and rcons. It yields
      5 significantly improved performance, supports multiple depths and color.
      6 
      7 Issues/TODO:
      8 
      9 - Color handling for 2bpp is broken
     10 - 64-bit types are not used on machines that are 64-bit
     11 - We should never be doing reads/writes of less than 32-bits
     12 - Need a manpage
     13 - Should handle multiple fonts simulatneously
     14 - Generate an `empty' box character when we have no match?
     15 - Use 'int' in lieu of 'int32' where we can
     16 - Compress some cases in rasops1.c
     17