NetBSD/sys/dev/rasops
jakllsch e91c24419b Fix whitespace. (In the source code, not in the functionality.) 2019-03-01 23:20:13 +00:00
..
README
files.rasops
rasops.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops.h add RI_PREFER_ALPHA flag, for drivers that can draw such fonts by hardware 2017-04-22 15:05:02 +00:00
rasops1.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops2.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops4.c It's WSATTR_UNDERLINE, not WS_UNDERLINE. 2018-12-05 05:52:23 +00:00
rasops8.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops15.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops24.c rasops reused wscons attribute bits for internal control. 2018-12-04 09:27:59 +00:00
rasops32.c Fix whitespace. (In the source code, not in the functionality.) 2019-03-01 23:20:13 +00:00
rasops_bitops.h
rasops_masks.c
rasops_masks.h

README

$NetBSD: README,v 1.6 2013/12/02 14:05:51 tsutsui Exp $

This directory contains `rasops', a set of raster operations intended to
replace the dev/rcons/raster stuff for both wscons and rcons. It yields
significantly improved performance, supports multiple depths and color.

Issues/TODO:

- There is no generic `putchar' function for 2bpp
- Color handling for 2bpp is broken
- 64-bit types are not used on machines that are 64-bit
- We should never be doing reads/writes of less than 32-bits
- Flags in attribute values are hardcoded
- Need a manpage
- Should handle multiple fonts simulatneously
- Generate an `empty' box character when we have no match?
- Use 'int' in lieu of 'int32' where we can
- Compress some cases in rasops1.c