NetBSD/sys/dev/rasops
dsl 6f0f9f8763 Make almost everything #include <sys/bswap.h> instead of <machine/bswap.h>
The bswap.h and endian.h files are all rather incestuous, but I want to
get the constant folding stuff into one place - sys/bswap.h
2006-01-29 21:42:40 +00:00
..
README
files.rasops merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops.c Make almost everything #include <sys/bswap.h> instead of <machine/bswap.h> 2006-01-29 21:42:40 +00:00
rasops.h merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops1.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops2.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops4.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops8.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops15.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops24.c Make almost everything #include <sys/bswap.h> instead of <machine/bswap.h> 2006-01-29 21:42:40 +00:00
rasops32.c merge ktrace-lwp. 2005-12-11 12:16:03 +00:00
rasops_bitops.h
rasops_masks.c
rasops_masks.h

README

$NetBSD: README,v 1.4 1999/10/07 09:04:10 ad 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
- copycols() from rasops_bitops.h is broken in right->left case
- The stamp mutex is not particularly safe
- 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