summaryrefslogtreecommitdiffstats
path: root/sys/dev/wsfont/wsfont.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Kill commented-out wsfont_remove().mpi2019-07-111-2/+1
| | | | | | Gets rid of an unused free(9) w/o size argument. ok jan@, anton@
* Implement counter-clockwise rotation.kettenis2017-08-171-2/+2
| | | | ok bcook@, stsp@
* No longer store fonts added with the WSDISPLAYIO_LDFONT ioctl into themiod2013-10-201-2/+2
| | | | | | | | | | | | | | | wsdisplay softc. Instead, since the knowledge about available fonts lies in the parent driver itself, introduce a list_font wsdisplay_accessop which queries a font index, suitable to use within the WSDISPLAYIO_LSFONT ioctl. With this in place: - there is no global wsdisplay limit on the number of fonts loaded. Such a limit will be enforced by the display drivers themselves. - built-in kernel fonts will now appear in the list of fonts. Grow a list_font accesop for rasops, which relies upon wsfont_enum(), which is turned into something useful (and abortable if you do not need to iterate further). Not used by any rasops driver yet.
* Add a load_font accessop to rasops, to allow for fonts to be loaded andmiod2013-10-201-3/+3
| | | | | | | selected. All rasops fonts are managed by wsfont, which allows a font to be loaded on a rasops device and used on another. Currently not plumbed in any driver yet. This is work in progress.
* Remove unused definition WSFONT_RDONLY.shadchin2012-01-101-2/+1
| | | | ok mpi@
* Remove unused function wsfont_getflg.shadchin2012-01-101-2/+1
| | | | ok mpi@
* Remove extra and trailing spaces.shadchin2012-01-061-3/+3
| | | | ok mpi@
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-261-8/+1
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* Stop compiling the texte console rotation code #ifdef __zaurus__, but usemiod2005-09-151-1/+2
| | | | | | | | | | | | | | a flag in the rasops_info structure; drivers which may use it shall declare a specific attribute for the config(8) machinery, so that the necessary code is compiled in. In addition to this, rotated font computation is now done on-demand, and a list of unrotated-rotated font cookie pairs is kept, rather than rotating all built-in wsfonts at initialization time. No user-perceptible functional change. Tested matthieu@ uwe@, ok uwe@
* Final __P removal plus some cosmetic fixupsmillert2002-03-141-2/+2
|
* First round of __P removal in sysmillert2002-03-141-10/+10
|
* Importing wsfont stuff from NetBSD.nate2001-03-181-0/+86