Home | History | Annotate | Line # | Download | only in rasops
rasops.c revision 1.74
      1  1.74    nonaka /*	 $NetBSD: rasops.c,v 1.74 2017/02/23 12:16:30 nonaka Exp $	*/
      2   1.1        ad 
      3   1.9        ad /*-
      4   1.9        ad  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5   1.1        ad  * All rights reserved.
      6   1.1        ad  *
      7   1.9        ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.32        ad  * by Andrew Doran.
      9   1.9        ad  *
     10   1.1        ad  * Redistribution and use in source and binary forms, with or without
     11   1.1        ad  * modification, are permitted provided that the following conditions
     12   1.1        ad  * are met:
     13   1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14   1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15   1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17   1.1        ad  *    documentation and/or other materials provided with the distribution.
     18   1.1        ad  *
     19   1.9        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.9        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.9        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.9        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.9        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.9        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.9        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.9        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.9        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.9        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.9        ad  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1        ad  */
     31   1.2        ad 
     32   1.1        ad #include <sys/cdefs.h>
     33  1.74    nonaka __KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.74 2017/02/23 12:16:30 nonaka Exp $");
     34   1.1        ad 
     35  1.18        ad #include "opt_rasops.h"
     36   1.4        ad #include "rasops_glue.h"
     37  1.47  macallan #include "opt_wsmsgattrs.h"
     38   1.1        ad 
     39   1.1        ad #include <sys/param.h>
     40   1.1        ad #include <sys/systm.h>
     41   1.1        ad #include <sys/time.h>
     42  1.63  macallan #include <sys/kmem.h>
     43   1.1        ad 
     44  1.50       dsl #include <sys/bswap.h>
     45   1.4        ad #include <machine/endian.h>
     46   1.3        ad 
     47   1.1        ad #include <dev/wscons/wsdisplayvar.h>
     48   1.1        ad #include <dev/wscons/wsconsio.h>
     49   1.1        ad #include <dev/wsfont/wsfont.h>
     50   1.1        ad #include <dev/rasops/rasops.h>
     51   1.1        ad 
     52  1.11        ad #ifndef _KERNEL
     53  1.11        ad #include <errno.h>
     54  1.11        ad #endif
     55  1.11        ad 
     56  1.70  macallan #ifdef RASOPS_DEBUG
     57  1.70  macallan #define DPRINTF aprint_error
     58  1.70  macallan #else
     59  1.70  macallan #define DPRINTF while (0) printf
     60  1.70  macallan #endif
     61  1.70  macallan 
     62  1.70  macallan struct rasops_matchdata {
     63  1.70  macallan 	struct rasops_info *ri;
     64  1.70  macallan 	int wantcols, wantrows;
     65  1.70  macallan 	int bestscore;
     66  1.70  macallan 	struct wsdisplay_font *pick;
     67  1.70  macallan 	int ident;
     68  1.70  macallan };
     69  1.70  macallan 
     70   1.1        ad /* ANSI colormap (R,G,B). Upper 8 are high-intensity */
     71  1.23  drochner const u_char rasops_cmap[256*3] = {
     72   1.1        ad 	0x00, 0x00, 0x00, /* black */
     73   1.1        ad 	0x7f, 0x00, 0x00, /* red */
     74   1.1        ad 	0x00, 0x7f, 0x00, /* green */
     75   1.1        ad 	0x7f, 0x7f, 0x00, /* brown */
     76   1.1        ad 	0x00, 0x00, 0x7f, /* blue */
     77   1.1        ad 	0x7f, 0x00, 0x7f, /* magenta */
     78   1.1        ad 	0x00, 0x7f, 0x7f, /* cyan */
     79   1.1        ad 	0xc7, 0xc7, 0xc7, /* white - XXX too dim? */
     80   1.1        ad 
     81   1.1        ad 	0x7f, 0x7f, 0x7f, /* black */
     82   1.1        ad 	0xff, 0x00, 0x00, /* red */
     83   1.1        ad 	0x00, 0xff, 0x00, /* green */
     84   1.1        ad 	0xff, 0xff, 0x00, /* brown */
     85   1.1        ad 	0x00, 0x00, 0xff, /* blue */
     86   1.1        ad 	0xff, 0x00, 0xff, /* magenta */
     87   1.1        ad 	0x00, 0xff, 0xff, /* cyan */
     88   1.1        ad 	0xff, 0xff, 0xff, /* white */
     89  1.23  drochner 
     90  1.23  drochner 	/*
     91  1.23  drochner 	 * For the cursor, we need at least the last (255th)
     92  1.23  drochner 	 * color to be white. Fill up white completely for
     93  1.23  drochner 	 * simplicity.
     94  1.23  drochner 	 */
     95  1.23  drochner #define _CMWHITE 0xff, 0xff, 0xff,
     96  1.23  drochner #define _CMWHITE16	_CMWHITE _CMWHITE _CMWHITE _CMWHITE \
     97  1.23  drochner 			_CMWHITE _CMWHITE _CMWHITE _CMWHITE \
     98  1.23  drochner 			_CMWHITE _CMWHITE _CMWHITE _CMWHITE \
     99  1.23  drochner 			_CMWHITE _CMWHITE _CMWHITE _CMWHITE
    100  1.23  drochner 	_CMWHITE16 _CMWHITE16 _CMWHITE16 _CMWHITE16 _CMWHITE16
    101  1.23  drochner 	_CMWHITE16 _CMWHITE16 _CMWHITE16 _CMWHITE16 _CMWHITE16
    102  1.44       uwe 	_CMWHITE16 _CMWHITE16 _CMWHITE16 _CMWHITE16 /* but not the last one */
    103  1.23  drochner #undef _CMWHITE16
    104  1.23  drochner #undef _CMWHITE
    105  1.44       uwe 
    106  1.44       uwe 	/*
    107  1.44       uwe 	 * For the cursor the fg/bg indices are bit inverted, so
    108  1.44       uwe 	 * provide complimentary colors in the upper 16 entries.
    109  1.44       uwe 	 */
    110  1.44       uwe 	0x7f, 0x7f, 0x7f, /* black */
    111  1.44       uwe 	0xff, 0x00, 0x00, /* red */
    112  1.44       uwe 	0x00, 0xff, 0x00, /* green */
    113  1.44       uwe 	0xff, 0xff, 0x00, /* brown */
    114  1.44       uwe 	0x00, 0x00, 0xff, /* blue */
    115  1.44       uwe 	0xff, 0x00, 0xff, /* magenta */
    116  1.44       uwe 	0x00, 0xff, 0xff, /* cyan */
    117  1.44       uwe 	0xff, 0xff, 0xff, /* white */
    118  1.44       uwe 
    119  1.44       uwe 	0x00, 0x00, 0x00, /* black */
    120  1.44       uwe 	0x7f, 0x00, 0x00, /* red */
    121  1.44       uwe 	0x00, 0x7f, 0x00, /* green */
    122  1.44       uwe 	0x7f, 0x7f, 0x00, /* brown */
    123  1.44       uwe 	0x00, 0x00, 0x7f, /* blue */
    124  1.44       uwe 	0x7f, 0x00, 0x7f, /* magenta */
    125  1.44       uwe 	0x00, 0x7f, 0x7f, /* cyan */
    126  1.44       uwe 	0xc7, 0xc7, 0xc7, /* white - XXX too dim? */
    127   1.1        ad };
    128   1.1        ad 
    129   1.1        ad /* True if color is gray */
    130  1.30        pk const u_char rasops_isgray[16] = {
    131  1.30        pk 	1, 0, 0, 0,
    132   1.1        ad 	0, 0, 0, 1,
    133   1.1        ad 	1, 0, 0, 0,
    134   1.1        ad 	0, 0, 0, 1
    135   1.1        ad };
    136   1.1        ad 
    137   1.4        ad /* Generic functions */
    138  1.45     perry static void	rasops_copyrows(void *, int, int, int);
    139  1.45     perry static int	rasops_mapchar(void *, int, u_int *);
    140  1.45     perry static void	rasops_cursor(void *, int, int, int);
    141  1.45     perry static int	rasops_allocattr_color(void *, int, int, int, long *);
    142  1.45     perry static int	rasops_allocattr_mono(void *, int, int, int, long *);
    143  1.45     perry static void	rasops_do_cursor(struct rasops_info *);
    144  1.45     perry static void	rasops_init_devcmap(struct rasops_info *);
    145   1.1        ad 
    146  1.55      ober #if NRASOPS_ROTATION > 0
    147  1.62    nonaka static void	rasops_rotate_font(int *, int);
    148  1.55      ober static void	rasops_copychar(void *, int, int, int, int);
    149  1.62    nonaka 
    150  1.62    nonaka /* rotate clockwise */
    151  1.62    nonaka static void	rasops_copycols_rotated_cw(void *, int, int, int, int);
    152  1.62    nonaka static void	rasops_copyrows_rotated_cw(void *, int, int, int);
    153  1.62    nonaka static void	rasops_erasecols_rotated_cw(void *, int, int, int, long);
    154  1.62    nonaka static void	rasops_eraserows_rotated_cw(void *, int, int, long);
    155  1.62    nonaka static void	rasops_putchar_rotated_cw(void *, int, int, u_int, long);
    156  1.62    nonaka 
    157  1.62    nonaka /* rotate counter-clockwise */
    158  1.62    nonaka static void	rasops_copychar_ccw(void *, int, int, int, int);
    159  1.62    nonaka static void	rasops_copycols_rotated_ccw(void *, int, int, int, int);
    160  1.62    nonaka static void	rasops_copyrows_rotated_ccw(void *, int, int, int);
    161  1.62    nonaka #define rasops_erasecols_rotated_ccw rasops_erasecols_rotated_cw
    162  1.62    nonaka #define rasops_eraserows_rotated_ccw rasops_eraserows_rotated_cw
    163  1.62    nonaka static void	rasops_putchar_rotated_ccw(void *, int, int, u_int, long);
    164  1.55      ober 
    165  1.55      ober /*
    166  1.55      ober  * List of all rotated fonts
    167  1.55      ober  */
    168  1.55      ober SLIST_HEAD(, rotatedfont) rotatedfonts = SLIST_HEAD_INITIALIZER(rotatedfonts);
    169  1.55      ober struct rotatedfont {
    170  1.55      ober 	SLIST_ENTRY(rotatedfont) rf_next;
    171  1.55      ober 	int rf_cookie;
    172  1.55      ober 	int rf_rotated;
    173  1.55      ober };
    174  1.55      ober #endif	/* NRASOPS_ROTATION > 0 */
    175  1.55      ober 
    176  1.63  macallan void	rasops_make_box_chars_8(struct rasops_info *);
    177  1.63  macallan void	rasops_make_box_chars_16(struct rasops_info *);
    178  1.63  macallan void	rasops_make_box_chars_32(struct rasops_info *);
    179  1.67  macallan void	rasops_make_box_chars_alpha(struct rasops_info *);
    180  1.63  macallan 
    181  1.64  macallan extern int cold;
    182  1.64  macallan 
    183   1.1        ad /*
    184  1.37       wiz  * Initialize a 'rasops_info' descriptor.
    185   1.1        ad  */
    186   1.1        ad int
    187  1.60       dsl rasops_init(struct rasops_info *ri, int wantrows, int wantcols)
    188   1.1        ad {
    189  1.20        ad 
    190  1.63  macallan 	memset (&ri->ri_optfont, 0, sizeof(ri->ri_optfont));
    191  1.30        pk #ifdef _KERNEL
    192   1.1        ad 	/* Select a font if the caller doesn't care */
    193   1.1        ad 	if (ri->ri_font == NULL) {
    194  1.67  macallan 		int cookie = -1;
    195  1.73   mlelstv 		int flags;
    196  1.30        pk 
    197   1.1        ad 		wsfont_init();
    198   1.1        ad 
    199  1.70  macallan 		/*
    200  1.70  macallan 		 * first, try to find something that's as close as possible
    201  1.70  macallan 		 * to the caller's requested terminal size
    202  1.70  macallan 		 */
    203  1.70  macallan 		if (wantrows == 0)
    204  1.70  macallan 			wantrows = RASOPS_DEFAULT_HEIGHT;
    205  1.70  macallan 		if (wantcols == 0)
    206  1.70  macallan 			wantcols = RASOPS_DEFAULT_WIDTH;
    207  1.73   mlelstv 
    208  1.73   mlelstv 		flags = WSFONT_FIND_BESTWIDTH | WSFONT_FIND_BITMAP;
    209  1.73   mlelstv 		if ((ri->ri_flg & RI_ENABLE_ALPHA) != 0)
    210  1.73   mlelstv 			flags |= WSFONT_FIND_ALPHA;
    211  1.73   mlelstv 
    212  1.73   mlelstv 		cookie = wsfont_find(NULL,
    213  1.73   mlelstv 			ri->ri_width / wantcols,
    214  1.73   mlelstv 			0,
    215  1.73   mlelstv 			0,
    216  1.73   mlelstv 			WSDISPLAY_FONTORDER_L2R,
    217  1.73   mlelstv 			WSDISPLAY_FONTORDER_L2R,
    218  1.73   mlelstv 			flags);
    219   1.1        ad 
    220  1.70  macallan 		/*
    221  1.70  macallan 		 * this means there is no supported font in the list
    222  1.70  macallan 		 */
    223   1.7        ad 		if (cookie <= 0) {
    224  1.70  macallan 			aprint_error("rasops_init: font table is empty\n");
    225   1.1        ad 			return (-1);
    226   1.1        ad 		}
    227  1.30        pk 
    228  1.55      ober #if NRASOPS_ROTATION > 0
    229  1.55      ober 		/*
    230  1.55      ober 		 * Pick the rotated version of this font. This will create it
    231  1.55      ober 		 * if necessary.
    232  1.55      ober 		 */
    233  1.62    nonaka 		if (ri->ri_flg & RI_ROTATE_MASK) {
    234  1.62    nonaka 			if (ri->ri_flg & RI_ROTATE_CW)
    235  1.62    nonaka 				rasops_rotate_font(&cookie, WSFONT_ROTATE_CW);
    236  1.62    nonaka 			else if (ri->ri_flg & RI_ROTATE_CCW)
    237  1.62    nonaka 				rasops_rotate_font(&cookie, WSFONT_ROTATE_CCW);
    238  1.62    nonaka 		}
    239  1.55      ober #endif
    240  1.55      ober 
    241  1.39        ad 		if (wsfont_lock(cookie, &ri->ri_font)) {
    242  1.70  macallan 			aprint_error("rasops_init: couldn't lock font\n");
    243   1.1        ad 			return (-1);
    244   1.1        ad 		}
    245   1.8        ad 
    246   1.5        ad 		ri->ri_wsfcookie = cookie;
    247   1.1        ad 	}
    248   1.4        ad #endif
    249  1.30        pk 
    250   1.1        ad 	/* This should never happen in reality... */
    251   1.1        ad #ifdef DEBUG
    252  1.31  sommerfe 	if ((long)ri->ri_bits & 3) {
    253  1.70  macallan 		aprint_error("rasops_init: bits not aligned on 32-bit boundary\n");
    254   1.1        ad 		return (-1);
    255   1.1        ad 	}
    256   1.1        ad 
    257   1.1        ad 	if ((int)ri->ri_stride & 3) {
    258  1.70  macallan 		aprint_error("rasops_init: stride not aligned on 32-bit boundary\n");
    259   1.1        ad 		return (-1);
    260   1.1        ad 	}
    261   1.1        ad #endif
    262   1.4        ad 
    263  1.13        ad 	if (rasops_reconfig(ri, wantrows, wantcols))
    264   1.4        ad 		return (-1);
    265  1.46     perry 
    266   1.4        ad 	rasops_init_devcmap(ri);
    267   1.4        ad 	return (0);
    268   1.4        ad }
    269   1.4        ad 
    270   1.4        ad /*
    271  1.13        ad  * Reconfigure (because parameters have changed in some way).
    272   1.4        ad  */
    273   1.4        ad int
    274  1.60       dsl rasops_reconfig(struct rasops_info *ri, int wantrows, int wantcols)
    275   1.4        ad {
    276  1.63  macallan 	int bpp, s, len;
    277  1.30        pk 
    278  1.13        ad 	s = splhigh();
    279  1.30        pk 
    280  1.70  macallan 	if (wantrows == 0)
    281  1.70  macallan 		wantrows = RASOPS_DEFAULT_HEIGHT;
    282  1.70  macallan 	if (wantcols == 0)
    283  1.70  macallan 		wantcols = RASOPS_DEFAULT_WIDTH;
    284  1.70  macallan 
    285  1.63  macallan 	/* throw away old line drawing character bitmaps, if we have any */
    286  1.63  macallan 	if (ri->ri_optfont.data != NULL) {
    287  1.63  macallan 		kmem_free(ri->ri_optfont.data, ri->ri_optfont.stride *
    288  1.63  macallan 		    ri->ri_optfont.fontheight * ri->ri_optfont.numchars);
    289  1.63  macallan 		ri->ri_optfont.data = NULL;
    290  1.63  macallan 	}
    291  1.63  macallan 
    292  1.63  macallan 	/* autogenerate box drawing characters */
    293  1.64  macallan 	ri->ri_optfont.firstchar = WSFONT_FLAG_OPT;
    294  1.64  macallan 	ri->ri_optfont.numchars = 16;
    295  1.63  macallan 	ri->ri_optfont.fontwidth = ri->ri_font->fontwidth;
    296  1.63  macallan 	ri->ri_optfont.fontheight = ri->ri_font->fontheight;
    297  1.63  macallan 	ri->ri_optfont.stride = ri->ri_font->stride;
    298  1.64  macallan 	len = ri->ri_optfont.fontheight * ri->ri_optfont.stride *
    299  1.64  macallan 		      ri->ri_optfont.numchars;
    300  1.64  macallan 
    301  1.64  macallan 	if (((ri->ri_flg & RI_NO_AUTO) == 0) &&
    302  1.64  macallan 	  ((ri->ri_optfont.data = kmem_zalloc(len, KM_SLEEP)) != NULL)) {
    303  1.64  macallan 
    304  1.67  macallan 		if (ri->ri_optfont.stride < ri->ri_optfont.fontwidth) {
    305  1.67  macallan 			switch (ri->ri_optfont.stride) {
    306  1.67  macallan 			case 1:
    307  1.67  macallan 				rasops_make_box_chars_8(ri);
    308  1.67  macallan 				break;
    309  1.67  macallan 			case 2:
    310  1.67  macallan 				rasops_make_box_chars_16(ri);
    311  1.67  macallan 				break;
    312  1.67  macallan 			case 4:
    313  1.67  macallan 				rasops_make_box_chars_32(ri);
    314  1.67  macallan 				break;
    315  1.67  macallan 			}
    316  1.67  macallan 		} else {
    317  1.67  macallan 			rasops_make_box_chars_alpha(ri);
    318  1.63  macallan 		}
    319  1.64  macallan 	} else
    320  1.64  macallan 		memset(&ri->ri_optfont, 0, sizeof(ri->ri_optfont));
    321  1.63  macallan 
    322   1.4        ad 	if (ri->ri_font->fontwidth > 32 || ri->ri_font->fontwidth < 4)
    323  1.42    provos 		panic("rasops_init: fontwidth assumptions botched!");
    324  1.30        pk 
    325   1.4        ad 	/* Need this to frob the setup below */
    326   1.4        ad 	bpp = (ri->ri_depth == 15 ? 16 : ri->ri_depth);
    327   1.4        ad 
    328  1.74    nonaka 	if ((ri->ri_flg & RI_CFGDONE) != 0) {
    329   1.4        ad 		ri->ri_bits = ri->ri_origbits;
    330  1.74    nonaka 		ri->ri_hwbits = ri->ri_hworigbits;
    331  1.74    nonaka 	}
    332  1.30        pk 
    333   1.1        ad 	/* Don't care if the caller wants a hideously small console */
    334   1.1        ad 	if (wantrows < 10)
    335  1.13        ad 		wantrows = 10;
    336  1.30        pk 
    337   1.1        ad 	if (wantcols < 20)
    338  1.13        ad 		wantcols = 20;
    339  1.30        pk 
    340   1.1        ad 	/* Now constrain what they get */
    341   1.1        ad 	ri->ri_emuwidth = ri->ri_font->fontwidth * wantcols;
    342   1.1        ad 	ri->ri_emuheight = ri->ri_font->fontheight * wantrows;
    343  1.30        pk 
    344   1.1        ad 	if (ri->ri_emuwidth > ri->ri_width)
    345   1.1        ad 		ri->ri_emuwidth = ri->ri_width;
    346  1.30        pk 
    347   1.1        ad 	if (ri->ri_emuheight > ri->ri_height)
    348   1.1        ad 		ri->ri_emuheight = ri->ri_height;
    349  1.30        pk 
    350   1.1        ad 	/* Reduce width until aligned on a 32-bit boundary */
    351  1.20        ad 	while ((ri->ri_emuwidth * bpp & 31) != 0)
    352   1.1        ad 		ri->ri_emuwidth--;
    353  1.30        pk 
    354  1.55      ober #if NRASOPS_ROTATION > 0
    355  1.62    nonaka 	if (ri->ri_flg & (RI_ROTATE_CW|RI_ROTATE_CCW)) {
    356  1.55      ober 		ri->ri_rows = ri->ri_emuwidth / ri->ri_font->fontwidth;
    357  1.55      ober 		ri->ri_cols = ri->ri_emuheight / ri->ri_font->fontheight;
    358  1.55      ober 	} else
    359  1.55      ober #endif
    360  1.55      ober 	{
    361  1.55      ober 
    362  1.55      ober 		ri->ri_cols = ri->ri_emuwidth / ri->ri_font->fontwidth;
    363  1.55      ober 		ri->ri_rows = ri->ri_emuheight / ri->ri_font->fontheight;
    364  1.55      ober 	}
    365   1.4        ad 	ri->ri_emustride = ri->ri_emuwidth * bpp >> 3;
    366   1.1        ad 	ri->ri_delta = ri->ri_stride - ri->ri_emustride;
    367   1.1        ad 	ri->ri_ccol = 0;
    368   1.1        ad 	ri->ri_crow = 0;
    369   1.4        ad 	ri->ri_pelbytes = bpp >> 3;
    370  1.30        pk 
    371   1.4        ad 	ri->ri_xscale = (ri->ri_font->fontwidth * bpp) >> 3;
    372   1.1        ad 	ri->ri_yscale = ri->ri_font->fontheight * ri->ri_stride;
    373   1.1        ad 	ri->ri_fontscale = ri->ri_font->fontheight * ri->ri_font->stride;
    374   1.1        ad 
    375  1.30        pk #ifdef DEBUG
    376  1.18        ad 	if ((ri->ri_delta & 3) != 0)
    377  1.13        ad 		panic("rasops_init: ri_delta not aligned on 32-bit boundary");
    378  1.30        pk #endif
    379   1.1        ad 	/* Clear the entire display */
    380  1.13        ad 	if ((ri->ri_flg & RI_CLEAR) != 0)
    381  1.13        ad 		memset(ri->ri_bits, 0, ri->ri_stride * ri->ri_height);
    382  1.30        pk 
    383  1.30        pk 	/* Now centre our window if needs be */
    384   1.1        ad 	ri->ri_origbits = ri->ri_bits;
    385  1.61  macallan 	ri->ri_hworigbits = ri->ri_hwbits;
    386  1.30        pk 
    387  1.13        ad 	if ((ri->ri_flg & RI_CENTER) != 0) {
    388  1.46     perry 		ri->ri_bits += (((ri->ri_width * bpp >> 3) -
    389  1.36   nathanw 		    ri->ri_emustride) >> 1) & ~3;
    390  1.30        pk 		ri->ri_bits += ((ri->ri_height - ri->ri_emuheight) >> 1) *
    391   1.1        ad 		    ri->ri_stride;
    392  1.61  macallan 		if (ri->ri_hwbits != NULL) {
    393  1.61  macallan 			ri->ri_hwbits += (((ri->ri_width * bpp >> 3) -
    394  1.61  macallan 			    ri->ri_emustride) >> 1) & ~3;
    395  1.61  macallan 			ri->ri_hwbits += ((ri->ri_height - ri->ri_emuheight) >> 1) *
    396  1.61  macallan 			    ri->ri_stride;
    397  1.61  macallan 		}
    398  1.30        pk 		ri->ri_yorigin = (int)(ri->ri_bits - ri->ri_origbits)
    399   1.5        ad 		   / ri->ri_stride;
    400  1.30        pk 		ri->ri_xorigin = (((int)(ri->ri_bits - ri->ri_origbits)
    401  1.28   nathanw 		   % ri->ri_stride) * 8 / bpp);
    402   1.5        ad 	} else
    403   1.5        ad 		ri->ri_xorigin = ri->ri_yorigin = 0;
    404   1.4        ad 
    405  1.30        pk 	/*
    406   1.4        ad 	 * Fill in defaults for operations set.  XXX this nukes private
    407   1.4        ad 	 * routines used by accelerated fb drivers.
    408   1.4        ad 	 */
    409   1.1        ad 	ri->ri_ops.mapchar = rasops_mapchar;
    410   1.1        ad 	ri->ri_ops.copyrows = rasops_copyrows;
    411   1.1        ad 	ri->ri_ops.copycols = rasops_copycols;
    412   1.4        ad 	ri->ri_ops.erasecols = rasops_erasecols;
    413   1.4        ad 	ri->ri_ops.eraserows = rasops_eraserows;
    414   1.1        ad 	ri->ri_ops.cursor = rasops_cursor;
    415   1.4        ad 	ri->ri_do_cursor = rasops_do_cursor;
    416  1.30        pk 
    417  1.13        ad 	if (ri->ri_depth < 8 || (ri->ri_flg & RI_FORCEMONO) != 0) {
    418  1.41  junyoung 		ri->ri_ops.allocattr = rasops_allocattr_mono;
    419  1.24  drochner 		ri->ri_caps = WSSCREEN_UNDERLINE | WSSCREEN_REVERSE;
    420   1.4        ad 	} else {
    421  1.41  junyoung 		ri->ri_ops.allocattr = rasops_allocattr_color;
    422  1.30        pk 		ri->ri_caps = WSSCREEN_UNDERLINE | WSSCREEN_HILIT |
    423  1.24  drochner 		    WSSCREEN_WSCOLORS | WSSCREEN_REVERSE;
    424   1.4        ad 	}
    425   1.4        ad 
    426   1.1        ad 	switch (ri->ri_depth) {
    427  1.20        ad #if NRASOPS1 > 0
    428   1.1        ad 	case 1:
    429   1.1        ad 		rasops1_init(ri);
    430   1.1        ad 		break;
    431   1.1        ad #endif
    432  1.20        ad #if NRASOPS2 > 0
    433   1.4        ad 	case 2:
    434   1.4        ad 		rasops2_init(ri);
    435  1.34  takemura 		break;
    436  1.34  takemura #endif
    437  1.34  takemura #if NRASOPS4 > 0
    438  1.34  takemura 	case 4:
    439  1.34  takemura 		rasops4_init(ri);
    440   1.4        ad 		break;
    441   1.4        ad #endif
    442  1.20        ad #if NRASOPS8 > 0
    443   1.1        ad 	case 8:
    444   1.1        ad 		rasops8_init(ri);
    445   1.1        ad 		break;
    446   1.1        ad #endif
    447  1.20        ad #if NRASOPS15 > 0 || NRASOPS16 > 0
    448   1.1        ad 	case 15:
    449   1.1        ad 	case 16:
    450   1.1        ad 		rasops15_init(ri);
    451   1.1        ad 		break;
    452   1.1        ad #endif
    453  1.20        ad #if NRASOPS24 > 0
    454   1.1        ad 	case 24:
    455   1.1        ad 		rasops24_init(ri);
    456   1.1        ad 		break;
    457   1.1        ad #endif
    458  1.20        ad #if NRASOPS32 > 0
    459   1.1        ad 	case 32:
    460   1.1        ad 		rasops32_init(ri);
    461   1.1        ad 		break;
    462   1.1        ad #endif
    463   1.1        ad 	default:
    464  1.13        ad 		ri->ri_flg &= ~RI_CFGDONE;
    465  1.13        ad 		splx(s);
    466   1.1        ad 		return (-1);
    467   1.1        ad 	}
    468  1.30        pk 
    469  1.55      ober #if NRASOPS_ROTATION > 0
    470  1.62    nonaka 	if (ri->ri_flg & RI_ROTATE_MASK) {
    471  1.62    nonaka 		if (ri->ri_flg & RI_ROTATE_CW) {
    472  1.62    nonaka 			ri->ri_real_ops = ri->ri_ops;
    473  1.62    nonaka 			ri->ri_ops.copycols = rasops_copycols_rotated_cw;
    474  1.62    nonaka 			ri->ri_ops.copyrows = rasops_copyrows_rotated_cw;
    475  1.62    nonaka 			ri->ri_ops.erasecols = rasops_erasecols_rotated_cw;
    476  1.62    nonaka 			ri->ri_ops.eraserows = rasops_eraserows_rotated_cw;
    477  1.62    nonaka 			ri->ri_ops.putchar = rasops_putchar_rotated_cw;
    478  1.62    nonaka 		} else if (ri->ri_flg & RI_ROTATE_CCW) {
    479  1.62    nonaka 			ri->ri_real_ops = ri->ri_ops;
    480  1.62    nonaka 			ri->ri_ops.copycols = rasops_copycols_rotated_ccw;
    481  1.62    nonaka 			ri->ri_ops.copyrows = rasops_copyrows_rotated_ccw;
    482  1.62    nonaka 			ri->ri_ops.erasecols = rasops_erasecols_rotated_ccw;
    483  1.62    nonaka 			ri->ri_ops.eraserows = rasops_eraserows_rotated_ccw;
    484  1.62    nonaka 			ri->ri_ops.putchar = rasops_putchar_rotated_ccw;
    485  1.62    nonaka 		}
    486  1.55      ober 	}
    487  1.55      ober #endif
    488  1.55      ober 
    489  1.13        ad 	ri->ri_flg |= RI_CFGDONE;
    490  1.13        ad 	splx(s);
    491   1.1        ad 	return (0);
    492   1.1        ad }
    493   1.1        ad 
    494   1.1        ad /*
    495   1.1        ad  * Map a character.
    496   1.1        ad  */
    497   1.1        ad static int
    498  1.59       dsl rasops_mapchar(void *cookie, int c, u_int *cp)
    499   1.1        ad {
    500   1.1        ad 	struct rasops_info *ri;
    501  1.30        pk 
    502   1.1        ad 	ri = (struct rasops_info *)cookie;
    503   1.8        ad 
    504  1.30        pk #ifdef DIAGNOSTIC
    505   1.8        ad 	if (ri->ri_font == NULL)
    506  1.42    provos 		panic("rasops_mapchar: no font selected");
    507  1.30        pk #endif
    508  1.39        ad 
    509  1.63  macallan 	if ( (c = wsfont_map_unichar(ri->ri_font, c)) < 0) {
    510  1.63  macallan 		*cp = ' ';
    511  1.63  macallan 		return (0);
    512  1.35    marcus 	}
    513  1.30        pk 
    514   1.1        ad 	if (c < ri->ri_font->firstchar) {
    515   1.1        ad 		*cp = ' ';
    516   1.1        ad 		return (0);
    517   1.1        ad 	}
    518  1.30        pk 
    519  1.63  macallan #if 0
    520   1.1        ad 	if (c - ri->ri_font->firstchar >= ri->ri_font->numchars) {
    521   1.1        ad 		*cp = ' ';
    522   1.1        ad 		return (0);
    523   1.1        ad 	}
    524  1.63  macallan #endif
    525   1.1        ad 	*cp = c;
    526   1.1        ad 	return (5);
    527   1.1        ad }
    528   1.1        ad 
    529   1.1        ad /*
    530   1.1        ad  * Allocate a color attribute.
    531   1.1        ad  */
    532   1.1        ad static int
    533  1.54  christos rasops_allocattr_color(void *cookie, int fg, int bg, int flg,
    534  1.53  christos     long *attr)
    535   1.1        ad {
    536   1.1        ad 	int swap;
    537   1.1        ad 
    538  1.56       mjf 	if (__predict_false((unsigned int)fg >= sizeof(rasops_isgray) ||
    539  1.56       mjf 	    (unsigned int)bg >= sizeof(rasops_isgray)))
    540  1.56       mjf 		return (EINVAL);
    541  1.56       mjf 
    542   1.1        ad #ifdef RASOPS_CLIPPING
    543   1.1        ad 	fg &= 7;
    544   1.1        ad 	bg &= 7;
    545   1.1        ad #endif
    546  1.17        ad 	if ((flg & WSATTR_BLINK) != 0)
    547   1.1        ad 		return (EINVAL);
    548  1.23  drochner 
    549  1.23  drochner 	if ((flg & WSATTR_WSCOLORS) == 0) {
    550  1.48  macallan #ifdef WS_DEFAULT_FG
    551  1.48  macallan 		fg = WS_DEFAULT_FG;
    552  1.48  macallan #else
    553  1.48  macallan 		fg = WSCOL_WHITE;
    554  1.48  macallan #endif
    555  1.48  macallan #ifdef WS_DEFAULT_BG
    556  1.48  macallan 		bg = WS_DEFAULT_BG;
    557  1.48  macallan #else
    558  1.48  macallan 		bg = WSCOL_BLACK;
    559  1.48  macallan #endif
    560  1.23  drochner 	}
    561  1.23  drochner 
    562  1.17        ad 	if ((flg & WSATTR_REVERSE) != 0) {
    563   1.1        ad 		swap = fg;
    564   1.1        ad 		fg = bg;
    565   1.1        ad 		bg = swap;
    566   1.1        ad 	}
    567   1.1        ad 
    568  1.17        ad 	if ((flg & WSATTR_HILIT) != 0)
    569   1.1        ad 		fg += 8;
    570  1.30        pk 
    571   1.1        ad 	flg = ((flg & WSATTR_UNDERLINE) ? 1 : 0);
    572  1.30        pk 
    573   1.1        ad 	if (rasops_isgray[fg])
    574   1.1        ad 		flg |= 2;
    575   1.1        ad 
    576   1.1        ad 	if (rasops_isgray[bg])
    577   1.1        ad 		flg |= 4;
    578   1.1        ad 
    579   1.1        ad 	*attr = (bg << 16) | (fg << 24) | flg;
    580  1.17        ad 	return (0);
    581   1.1        ad }
    582   1.1        ad 
    583   1.1        ad /*
    584   1.1        ad  * Allocate a mono attribute.
    585   1.1        ad  */
    586   1.1        ad static int
    587  1.54  christos rasops_allocattr_mono(void *cookie, int fg, int bg, int flg,
    588  1.53  christos     long *attr)
    589   1.1        ad {
    590   1.1        ad 	int swap;
    591   1.1        ad 
    592  1.23  drochner 	if ((flg & (WSATTR_BLINK | WSATTR_HILIT | WSATTR_WSCOLORS)) != 0)
    593   1.1        ad 		return (EINVAL);
    594  1.23  drochner 
    595  1.23  drochner 	fg = 1;
    596  1.23  drochner 	bg = 0;
    597  1.23  drochner 
    598  1.17        ad 	if ((flg & WSATTR_REVERSE) != 0) {
    599   1.1        ad 		swap = fg;
    600   1.1        ad 		fg = bg;
    601   1.1        ad 		bg = swap;
    602   1.1        ad 	}
    603   1.1        ad 
    604   1.1        ad 	*attr = (bg << 16) | (fg << 24) | ((flg & WSATTR_UNDERLINE) ? 7 : 6);
    605  1.17        ad 	return (0);
    606   1.1        ad }
    607   1.1        ad 
    608   1.1        ad /*
    609   1.1        ad  * Copy rows.
    610   1.1        ad  */
    611   1.1        ad static void
    612  1.60       dsl rasops_copyrows(void *cookie, int src, int dst, int num)
    613   1.1        ad {
    614  1.51  jmcneill 	int32_t *sp, *dp, *hp, *srp, *drp, *hrp;
    615   1.1        ad 	struct rasops_info *ri;
    616  1.18        ad 	int n8, n1, cnt, delta;
    617  1.30        pk 
    618   1.1        ad 	ri = (struct rasops_info *)cookie;
    619  1.51  jmcneill 	hp = hrp = NULL;
    620   1.1        ad 
    621   1.1        ad #ifdef RASOPS_CLIPPING
    622   1.1        ad 	if (dst == src)
    623   1.1        ad 		return;
    624  1.30        pk 
    625   1.1        ad 	if (src < 0) {
    626   1.1        ad 		num += src;
    627   1.1        ad 		src = 0;
    628   1.1        ad 	}
    629   1.1        ad 
    630   1.1        ad 	if ((src + num) > ri->ri_rows)
    631   1.1        ad 		num = ri->ri_rows - src;
    632   1.1        ad 
    633   1.1        ad 	if (dst < 0) {
    634   1.1        ad 		num += dst;
    635   1.1        ad 		dst = 0;
    636   1.1        ad 	}
    637   1.1        ad 
    638   1.1        ad 	if ((dst + num) > ri->ri_rows)
    639   1.1        ad 		num = ri->ri_rows - dst;
    640  1.30        pk 
    641   1.1        ad 	if (num <= 0)
    642   1.1        ad 		return;
    643   1.1        ad #endif
    644   1.1        ad 
    645   1.1        ad 	num *= ri->ri_font->fontheight;
    646   1.1        ad 	n8 = ri->ri_emustride >> 5;
    647   1.1        ad 	n1 = (ri->ri_emustride >> 2) & 7;
    648  1.30        pk 
    649   1.1        ad 	if (dst < src) {
    650  1.18        ad 		srp = (int32_t *)(ri->ri_bits + src * ri->ri_yscale);
    651  1.18        ad 		drp = (int32_t *)(ri->ri_bits + dst * ri->ri_yscale);
    652  1.51  jmcneill 		if (ri->ri_hwbits)
    653  1.51  jmcneill 			hrp = (int32_t *)(ri->ri_hwbits + dst *
    654  1.51  jmcneill 			    ri->ri_yscale);
    655  1.18        ad 		delta = ri->ri_stride;
    656   1.1        ad 	} else {
    657   1.1        ad 		src = ri->ri_font->fontheight * src + num - 1;
    658   1.1        ad 		dst = ri->ri_font->fontheight * dst + num - 1;
    659   1.1        ad 		srp = (int32_t *)(ri->ri_bits + src * ri->ri_stride);
    660   1.1        ad 		drp = (int32_t *)(ri->ri_bits + dst * ri->ri_stride);
    661  1.51  jmcneill 		if (ri->ri_hwbits)
    662  1.51  jmcneill 			hrp = (int32_t *)(ri->ri_hwbits + dst *
    663  1.51  jmcneill 			    ri->ri_stride);
    664  1.51  jmcneill 
    665  1.18        ad 		delta = -ri->ri_stride;
    666  1.18        ad 	}
    667  1.30        pk 
    668  1.18        ad 	while (num--) {
    669  1.18        ad 		dp = drp;
    670  1.18        ad 		sp = srp;
    671  1.51  jmcneill 		if (ri->ri_hwbits)
    672  1.51  jmcneill 			hp = hrp;
    673  1.51  jmcneill 
    674  1.18        ad 		DELTA(drp, delta, int32_t *);
    675  1.18        ad 		DELTA(srp, delta, int32_t *);
    676  1.51  jmcneill 		if (ri->ri_hwbits)
    677  1.51  jmcneill 			DELTA(hrp, delta, int32_t *);
    678  1.18        ad 
    679  1.18        ad 		for (cnt = n8; cnt; cnt--) {
    680  1.52  jmcneill 			dp[0] = sp[0];
    681  1.52  jmcneill 			dp[1] = sp[1];
    682  1.52  jmcneill 			dp[2] = sp[2];
    683  1.52  jmcneill 			dp[3] = sp[3];
    684  1.52  jmcneill 			dp[4] = sp[4];
    685  1.52  jmcneill 			dp[5] = sp[5];
    686  1.52  jmcneill 			dp[6] = sp[6];
    687  1.52  jmcneill 			dp[7] = sp[7];
    688  1.18        ad 			dp += 8;
    689  1.18        ad 			sp += 8;
    690  1.52  jmcneill 		}
    691  1.52  jmcneill 		if (ri->ri_hwbits) {
    692  1.52  jmcneill 			sp -= (8 * n8);
    693  1.52  jmcneill 			for (cnt = n8; cnt; cnt--) {
    694  1.52  jmcneill 				hp[0] = sp[0];
    695  1.52  jmcneill 				hp[1] = sp[1];
    696  1.52  jmcneill 				hp[2] = sp[2];
    697  1.52  jmcneill 				hp[3] = sp[3];
    698  1.52  jmcneill 				hp[4] = sp[4];
    699  1.52  jmcneill 				hp[5] = sp[5];
    700  1.52  jmcneill 				hp[6] = sp[6];
    701  1.52  jmcneill 				hp[7] = sp[7];
    702  1.51  jmcneill 				hp += 8;
    703  1.52  jmcneill 				sp += 8;
    704  1.52  jmcneill 			}
    705  1.18        ad 		}
    706  1.30        pk 
    707  1.51  jmcneill 		for (cnt = n1; cnt; cnt--) {
    708  1.18        ad 			*dp++ = *sp++;
    709  1.51  jmcneill 			if (ri->ri_hwbits)
    710  1.51  jmcneill 				*hp++ = *(sp - 1);
    711  1.51  jmcneill 		}
    712   1.1        ad 	}
    713   1.1        ad }
    714   1.1        ad 
    715   1.1        ad /*
    716   1.1        ad  * Copy columns. This is slow, and hard to optimize due to alignment,
    717   1.1        ad  * and the fact that we have to copy both left->right and right->left.
    718  1.43       uwe  * We simply cop-out here and use memmove(), since it handles all of
    719   1.1        ad  * these cases anyway.
    720   1.1        ad  */
    721   1.4        ad void
    722  1.60       dsl rasops_copycols(void *cookie, int row, int src, int dst, int num)
    723   1.1        ad {
    724   1.1        ad 	struct rasops_info *ri;
    725  1.51  jmcneill 	u_char *sp, *dp, *hp;
    726   1.1        ad 	int height;
    727  1.30        pk 
    728   1.1        ad 	ri = (struct rasops_info *)cookie;
    729  1.51  jmcneill 	hp = NULL;
    730   1.1        ad 
    731   1.1        ad #ifdef RASOPS_CLIPPING
    732   1.1        ad 	if (dst == src)
    733   1.1        ad 		return;
    734  1.30        pk 
    735   1.3        ad 	/* Catches < 0 case too */
    736   1.3        ad 	if ((unsigned)row >= (unsigned)ri->ri_rows)
    737   1.1        ad 		return;
    738  1.30        pk 
    739   1.1        ad 	if (src < 0) {
    740   1.1        ad 		num += src;
    741   1.1        ad 		src = 0;
    742   1.1        ad 	}
    743   1.1        ad 
    744   1.1        ad 	if ((src + num) > ri->ri_cols)
    745   1.1        ad 		num = ri->ri_cols - src;
    746   1.1        ad 
    747   1.1        ad 	if (dst < 0) {
    748   1.1        ad 		num += dst;
    749   1.1        ad 		dst = 0;
    750   1.1        ad 	}
    751   1.1        ad 
    752   1.1        ad 	if ((dst + num) > ri->ri_cols)
    753   1.1        ad 		num = ri->ri_cols - dst;
    754  1.30        pk 
    755   1.1        ad 	if (num <= 0)
    756   1.1        ad 		return;
    757   1.1        ad #endif
    758  1.30        pk 
    759   1.1        ad 	num *= ri->ri_xscale;
    760   1.1        ad 	row *= ri->ri_yscale;
    761   1.1        ad 	height = ri->ri_font->fontheight;
    762  1.30        pk 
    763   1.1        ad 	sp = ri->ri_bits + row + src * ri->ri_xscale;
    764   1.1        ad 	dp = ri->ri_bits + row + dst * ri->ri_xscale;
    765  1.51  jmcneill 	if (ri->ri_hwbits)
    766  1.51  jmcneill 		hp = ri->ri_hwbits + row + dst * ri->ri_xscale;
    767  1.30        pk 
    768   1.1        ad 	while (height--) {
    769  1.43       uwe 		memmove(dp, sp, num);
    770  1.51  jmcneill 		if (ri->ri_hwbits) {
    771  1.51  jmcneill 			memcpy(hp, sp, num);
    772  1.51  jmcneill 			hp += ri->ri_stride;
    773  1.51  jmcneill 		}
    774   1.1        ad 		dp += ri->ri_stride;
    775   1.1        ad 		sp += ri->ri_stride;
    776   1.1        ad 	}
    777   1.1        ad }
    778   1.1        ad 
    779   1.1        ad /*
    780   1.1        ad  * Turn cursor off/on.
    781   1.1        ad  */
    782   1.1        ad static void
    783  1.60       dsl rasops_cursor(void *cookie, int on, int row, int col)
    784   1.1        ad {
    785   1.1        ad 	struct rasops_info *ri;
    786  1.30        pk 
    787   1.1        ad 	ri = (struct rasops_info *)cookie;
    788  1.30        pk 
    789   1.1        ad 	/* Turn old cursor off */
    790  1.13        ad 	if ((ri->ri_flg & RI_CURSOR) != 0)
    791  1.30        pk #ifdef RASOPS_CLIPPING
    792  1.13        ad 		if ((ri->ri_flg & RI_CURSORCLIP) == 0)
    793   1.1        ad #endif
    794   1.1        ad 			ri->ri_do_cursor(ri);
    795   1.1        ad 
    796   1.1        ad 	/* Select new cursor */
    797   1.1        ad #ifdef RASOPS_CLIPPING
    798  1.13        ad 	ri->ri_flg &= ~RI_CURSORCLIP;
    799  1.30        pk 
    800   1.1        ad 	if (row < 0 || row >= ri->ri_rows)
    801  1.13        ad 		ri->ri_flg |= RI_CURSORCLIP;
    802   1.1        ad 	else if (col < 0 || col >= ri->ri_cols)
    803  1.13        ad 		ri->ri_flg |= RI_CURSORCLIP;
    804   1.1        ad #endif
    805   1.1        ad 	ri->ri_crow = row;
    806   1.1        ad 	ri->ri_ccol = col;
    807   1.1        ad 
    808   1.1        ad 	if (on) {
    809  1.13        ad 		ri->ri_flg |= RI_CURSOR;
    810  1.30        pk #ifdef RASOPS_CLIPPING
    811  1.13        ad 		if ((ri->ri_flg & RI_CURSORCLIP) == 0)
    812   1.1        ad #endif
    813   1.1        ad 			ri->ri_do_cursor(ri);
    814  1.30        pk 	} else
    815  1.13        ad 		ri->ri_flg &= ~RI_CURSOR;
    816   1.1        ad }
    817   1.1        ad 
    818   1.1        ad /*
    819   1.1        ad  * Make the device colormap
    820   1.1        ad  */
    821   1.4        ad static void
    822  1.59       dsl rasops_init_devcmap(struct rasops_info *ri)
    823   1.1        ad {
    824  1.23  drochner 	const u_char *p;
    825   1.1        ad 	int i, c;
    826  1.30        pk 
    827   1.4        ad 	switch (ri->ri_depth) {
    828   1.4        ad 	case 1:
    829   1.4        ad 		ri->ri_devcmap[0] = 0;
    830   1.4        ad 		for (i = 1; i < 16; i++)
    831   1.4        ad 			ri->ri_devcmap[i] = -1;
    832   1.4        ad 		return;
    833   1.4        ad 
    834   1.4        ad 	case 2:
    835   1.4        ad 		for (i = 1; i < 15; i++)
    836   1.4        ad 			ri->ri_devcmap[i] = 0xaaaaaaaa;
    837  1.30        pk 
    838   1.4        ad 		ri->ri_devcmap[0] = 0;
    839   1.4        ad 		ri->ri_devcmap[8] = 0x55555555;
    840   1.4        ad 		ri->ri_devcmap[15] = -1;
    841   1.4        ad 		return;
    842   1.4        ad 
    843   1.4        ad 	case 8:
    844  1.68  macallan 		if ((ri->ri_flg & RI_8BIT_IS_RGB) == 0) {
    845  1.68  macallan 			for (i = 0; i < 16; i++)
    846  1.68  macallan 				ri->ri_devcmap[i] =
    847  1.68  macallan 				    i | (i<<8) | (i<<16) | (i<<24);
    848  1.68  macallan 			return;
    849  1.68  macallan 		}
    850   1.4        ad 	}
    851  1.30        pk 
    852   1.1        ad 	p = rasops_cmap;
    853  1.30        pk 
    854  1.29   nathanw 	for (i = 0; i < 16; i++) {
    855   1.1        ad 		if (ri->ri_rnum <= 8)
    856  1.12        ad 			c = (*p >> (8 - ri->ri_rnum)) << ri->ri_rpos;
    857  1.30        pk 		else
    858  1.12        ad 			c = (*p << (ri->ri_rnum - 8)) << ri->ri_rpos;
    859  1.29   nathanw 		p++;
    860   1.1        ad 
    861   1.1        ad 		if (ri->ri_gnum <= 8)
    862  1.12        ad 			c |= (*p >> (8 - ri->ri_gnum)) << ri->ri_gpos;
    863  1.30        pk 		else
    864  1.12        ad 			c |= (*p << (ri->ri_gnum - 8)) << ri->ri_gpos;
    865  1.29   nathanw 		p++;
    866   1.1        ad 
    867   1.1        ad 		if (ri->ri_bnum <= 8)
    868  1.12        ad 			c |= (*p >> (8 - ri->ri_bnum)) << ri->ri_bpos;
    869  1.30        pk 		else
    870  1.12        ad 			c |= (*p << (ri->ri_bnum - 8)) << ri->ri_bpos;
    871  1.29   nathanw 		p++;
    872   1.4        ad 
    873   1.4        ad 		/* Fill the word for generic routines, which want this */
    874   1.4        ad 		if (ri->ri_depth == 24)
    875   1.4        ad 			c = c | ((c & 0xff) << 24);
    876  1.69  macallan 		else if (ri->ri_depth == 8) {
    877  1.69  macallan 			c = c | (c << 8);
    878  1.69  macallan 			c |= c << 16;
    879  1.69  macallan 		} else if (ri->ri_depth <= 16)
    880   1.4        ad 			c = c | (c << 16);
    881   1.1        ad 
    882   1.4        ad 		/* 24bpp does bswap on the fly. {32,16,15}bpp do it here. */
    883  1.13        ad 		if ((ri->ri_flg & RI_BSWAP) == 0)
    884   1.3        ad 			ri->ri_devcmap[i] = c;
    885   1.4        ad 		else if (ri->ri_depth == 32)
    886   1.3        ad 			ri->ri_devcmap[i] = bswap32(c);
    887   1.4        ad 		else if (ri->ri_depth == 16 || ri->ri_depth == 15)
    888   1.3        ad 			ri->ri_devcmap[i] = bswap16(c);
    889   1.4        ad 		else
    890   1.4        ad 			ri->ri_devcmap[i] = c;
    891   1.1        ad 	}
    892   1.1        ad }
    893   1.1        ad 
    894   1.1        ad /*
    895   1.1        ad  * Unpack a rasops attribute
    896   1.1        ad  */
    897   1.1        ad void
    898  1.60       dsl rasops_unpack_attr(long attr, int *fg, int *bg, int *underline)
    899   1.1        ad {
    900  1.30        pk 
    901  1.30        pk 	*fg = ((u_int)attr >> 24) & 0xf;
    902  1.30        pk 	*bg = ((u_int)attr >> 16) & 0xf;
    903  1.25        ad 	if (underline != NULL)
    904  1.24  drochner 		*underline = (u_int)attr & 1;
    905   1.4        ad }
    906   1.4        ad 
    907   1.4        ad /*
    908   1.4        ad  * Erase rows. This isn't static, since 24-bpp uses it in special cases.
    909   1.4        ad  */
    910   1.4        ad void
    911  1.60       dsl rasops_eraserows(void *cookie, int row, int num, long attr)
    912   1.4        ad {
    913   1.4        ad 	struct rasops_info *ri;
    914  1.14        ad 	int np, nw, cnt, delta;
    915  1.51  jmcneill 	int32_t *dp, *hp, clr;
    916  1.51  jmcneill 	int i;
    917  1.30        pk 
    918   1.4        ad 	ri = (struct rasops_info *)cookie;
    919  1.51  jmcneill 	hp = NULL;
    920   1.4        ad 
    921   1.4        ad #ifdef RASOPS_CLIPPING
    922   1.4        ad 	if (row < 0) {
    923   1.4        ad 		num += row;
    924   1.4        ad 		row = 0;
    925   1.4        ad 	}
    926   1.4        ad 
    927   1.4        ad 	if ((row + num) > ri->ri_rows)
    928   1.4        ad 		num = ri->ri_rows - row;
    929  1.30        pk 
    930   1.4        ad 	if (num <= 0)
    931   1.4        ad 		return;
    932   1.4        ad #endif
    933   1.4        ad 
    934  1.30        pk 	clr = ri->ri_devcmap[(attr >> 16) & 0xf];
    935   1.4        ad 
    936  1.30        pk 	/*
    937  1.20        ad 	 * XXX The wsdisplay_emulops interface seems a little deficient in
    938  1.30        pk 	 * that there is no way to clear the *entire* screen. We provide a
    939  1.30        pk 	 * workaround here: if the entire console area is being cleared, and
    940  1.13        ad 	 * the RI_FULLCLEAR flag is set, clear the entire display.
    941  1.30        pk 	 */
    942  1.13        ad 	if (num == ri->ri_rows && (ri->ri_flg & RI_FULLCLEAR) != 0) {
    943  1.13        ad 		np = ri->ri_stride >> 5;
    944  1.13        ad 		nw = (ri->ri_stride >> 2) & 7;
    945  1.13        ad 		num = ri->ri_height;
    946  1.14        ad 		dp = (int32_t *)ri->ri_origbits;
    947  1.51  jmcneill 		if (ri->ri_hwbits)
    948  1.61  macallan 			hp = (int32_t *)ri->ri_hworigbits;
    949  1.14        ad 		delta = 0;
    950  1.13        ad 	} else {
    951  1.13        ad 		np = ri->ri_emustride >> 5;
    952  1.13        ad 		nw = (ri->ri_emustride >> 2) & 7;
    953  1.13        ad 		num *= ri->ri_font->fontheight;
    954  1.14        ad 		dp = (int32_t *)(ri->ri_bits + row * ri->ri_yscale);
    955  1.51  jmcneill 		if (ri->ri_hwbits)
    956  1.51  jmcneill 			hp = (int32_t *)(ri->ri_hwbits + row *
    957  1.51  jmcneill 			    ri->ri_yscale);
    958  1.14        ad 		delta = ri->ri_delta;
    959  1.13        ad 	}
    960  1.30        pk 
    961   1.4        ad 	while (num--) {
    962   1.4        ad 		for (cnt = np; cnt; cnt--) {
    963  1.51  jmcneill 			for (i = 0; i < 8; i++) {
    964  1.51  jmcneill 				dp[i] = clr;
    965  1.51  jmcneill 				if (ri->ri_hwbits)
    966  1.51  jmcneill 					hp[i] = clr;
    967  1.51  jmcneill 			}
    968   1.4        ad 			dp += 8;
    969  1.51  jmcneill 			if (ri->ri_hwbits)
    970  1.51  jmcneill 				hp += 8;
    971   1.4        ad 		}
    972  1.30        pk 
    973   1.4        ad 		for (cnt = nw; cnt; cnt--) {
    974   1.4        ad 			*(int32_t *)dp = clr;
    975   1.4        ad 			DELTA(dp, 4, int32_t *);
    976  1.51  jmcneill 			if (ri->ri_hwbits) {
    977  1.51  jmcneill 				*(int32_t *)hp = clr;
    978  1.51  jmcneill 				DELTA(hp, 4, int32_t *);
    979  1.51  jmcneill 			}
    980  1.30        pk 		}
    981  1.30        pk 
    982  1.14        ad 		DELTA(dp, delta, int32_t *);
    983  1.51  jmcneill 		if (ri->ri_hwbits)
    984  1.51  jmcneill 			DELTA(hp, delta, int32_t *);
    985   1.4        ad 	}
    986   1.4        ad }
    987   1.4        ad 
    988   1.4        ad /*
    989   1.4        ad  * Actually turn the cursor on or off. This does the dirty work for
    990   1.4        ad  * rasops_cursor().
    991   1.4        ad  */
    992   1.4        ad static void
    993  1.59       dsl rasops_do_cursor(struct rasops_info *ri)
    994   1.4        ad {
    995  1.21        ad 	int full1, height, cnt, slop1, slop2, row, col;
    996  1.63  macallan 	u_char *dp, *rp, *hrp, *hp, tmp = 0;
    997  1.51  jmcneill 
    998  1.51  jmcneill 	hrp = hp = NULL;
    999  1.30        pk 
   1000  1.55      ober #if NRASOPS_ROTATION > 0
   1001  1.62    nonaka 	if (ri->ri_flg & RI_ROTATE_MASK) {
   1002  1.62    nonaka 		if (ri->ri_flg & RI_ROTATE_CW) {
   1003  1.62    nonaka 			/* Rotate rows/columns */
   1004  1.62    nonaka 			row = ri->ri_ccol;
   1005  1.62    nonaka 			col = ri->ri_rows - ri->ri_crow - 1;
   1006  1.62    nonaka 		} else if (ri->ri_flg & RI_ROTATE_CCW) {
   1007  1.62    nonaka 			/* Rotate rows/columns */
   1008  1.62    nonaka 			row = ri->ri_cols - ri->ri_ccol - 1;
   1009  1.62    nonaka 			col = ri->ri_crow;
   1010  1.62    nonaka 		} else {	/* upside-down */
   1011  1.62    nonaka 			row = ri->ri_crow;
   1012  1.62    nonaka 			col = ri->ri_ccol;
   1013  1.62    nonaka 		}
   1014  1.55      ober 	} else
   1015  1.55      ober #endif
   1016  1.55      ober 	{
   1017  1.55      ober 		row = ri->ri_crow;
   1018  1.55      ober 		col = ri->ri_ccol;
   1019  1.55      ober 	}
   1020  1.30        pk 
   1021   1.4        ad 	rp = ri->ri_bits + row * ri->ri_yscale + col * ri->ri_xscale;
   1022  1.51  jmcneill 	if (ri->ri_hwbits)
   1023  1.51  jmcneill 		hrp = ri->ri_hwbits + row * ri->ri_yscale + col
   1024  1.51  jmcneill 		    * ri->ri_xscale;
   1025   1.4        ad 	height = ri->ri_font->fontheight;
   1026  1.27  nisimura 	slop1 = (4 - ((long)rp & 3)) & 3;
   1027  1.30        pk 
   1028   1.4        ad 	if (slop1 > ri->ri_xscale)
   1029   1.4        ad 		slop1 = ri->ri_xscale;
   1030  1.30        pk 
   1031   1.4        ad 	slop2 = (ri->ri_xscale - slop1) & 3;
   1032   1.4        ad 	full1 = (ri->ri_xscale - slop1 - slop2) >> 2;
   1033  1.30        pk 
   1034   1.4        ad 	if ((slop1 | slop2) == 0) {
   1035  1.63  macallan 		uint32_t tmp32;
   1036   1.4        ad 		/* A common case */
   1037   1.4        ad 		while (height--) {
   1038   1.4        ad 			dp = rp;
   1039   1.4        ad 			rp += ri->ri_stride;
   1040  1.51  jmcneill 			if (ri->ri_hwbits) {
   1041  1.51  jmcneill 				hp = hrp;
   1042  1.51  jmcneill 				hrp += ri->ri_stride;
   1043  1.51  jmcneill 			}
   1044  1.30        pk 
   1045   1.4        ad 			for (cnt = full1; cnt; cnt--) {
   1046  1.63  macallan 				tmp32 = *(int32_t *)dp ^ ~0;
   1047  1.63  macallan 				*(int32_t *)dp = tmp32;
   1048   1.4        ad 				dp += 4;
   1049  1.51  jmcneill 				if (ri->ri_hwbits) {
   1050  1.63  macallan 					*(int32_t *)hp = tmp32;
   1051  1.51  jmcneill 					hp += 4;
   1052  1.51  jmcneill 				}
   1053   1.4        ad 			}
   1054   1.4        ad 		}
   1055   1.4        ad 	} else {
   1056  1.63  macallan 		uint16_t tmp16;
   1057  1.63  macallan 		uint32_t tmp32;
   1058   1.4        ad 		/* XXX this is stupid.. use masks instead */
   1059   1.4        ad 		while (height--) {
   1060   1.4        ad 			dp = rp;
   1061   1.4        ad 			rp += ri->ri_stride;
   1062  1.51  jmcneill 			if (ri->ri_hwbits) {
   1063  1.51  jmcneill 				hp = hrp;
   1064  1.51  jmcneill 				hrp += ri->ri_stride;
   1065  1.51  jmcneill 			}
   1066  1.30        pk 
   1067  1.51  jmcneill 			if (slop1 & 1) {
   1068  1.63  macallan 				tmp = *dp ^ ~0;
   1069  1.63  macallan 				*dp = tmp;
   1070  1.63  macallan 				dp++;
   1071  1.57  jmcneill 				if (ri->ri_hwbits) {
   1072  1.63  macallan 					*hp++ = tmp;
   1073  1.57  jmcneill 				}
   1074  1.51  jmcneill 			}
   1075   1.4        ad 
   1076   1.4        ad 			if (slop1 & 2) {
   1077  1.63  macallan 				tmp16 = *(int16_t *)dp ^ ~0;
   1078  1.63  macallan 				*(uint16_t *)dp = tmp16;
   1079   1.4        ad 				dp += 2;
   1080  1.51  jmcneill 				if (ri->ri_hwbits) {
   1081  1.63  macallan 					*(int16_t *)hp = tmp16;
   1082  1.51  jmcneill 					hp += 2;
   1083  1.51  jmcneill 				}
   1084   1.4        ad 			}
   1085  1.30        pk 
   1086   1.4        ad 			for (cnt = full1; cnt; cnt--) {
   1087  1.63  macallan 				tmp32 = *(int32_t *)dp ^ ~0;
   1088  1.63  macallan 				*(uint32_t *)dp = tmp32;
   1089   1.4        ad 				dp += 4;
   1090  1.51  jmcneill 				if (ri->ri_hwbits) {
   1091  1.63  macallan 					*(int32_t *)hp = tmp32;
   1092  1.51  jmcneill 					hp += 4;
   1093  1.51  jmcneill 				}
   1094   1.4        ad 			}
   1095   1.4        ad 
   1096  1.51  jmcneill 			if (slop2 & 1) {
   1097  1.63  macallan 				tmp = *dp ^ ~0;
   1098  1.63  macallan 				*dp = tmp;
   1099  1.63  macallan 				dp++;
   1100  1.51  jmcneill 				if (ri->ri_hwbits)
   1101  1.63  macallan 					*hp++ = tmp;
   1102  1.51  jmcneill 			}
   1103   1.4        ad 
   1104  1.51  jmcneill 			if (slop2 & 2) {
   1105  1.63  macallan 				tmp16 = *(int16_t *)dp ^ ~0;
   1106  1.63  macallan 				*(uint16_t *)dp = tmp16;
   1107  1.51  jmcneill 				if (ri->ri_hwbits)
   1108  1.63  macallan 					*(int16_t *)hp = tmp16;
   1109  1.51  jmcneill 			}
   1110   1.4        ad 		}
   1111   1.4        ad 	}
   1112   1.4        ad }
   1113   1.4        ad 
   1114   1.4        ad /*
   1115   1.4        ad  * Erase columns.
   1116   1.4        ad  */
   1117   1.4        ad void
   1118  1.60       dsl rasops_erasecols(void *cookie, int row, int col, int num, long attr)
   1119   1.4        ad {
   1120   1.4        ad 	int n8, height, cnt, slop1, slop2, clr;
   1121   1.4        ad 	struct rasops_info *ri;
   1122  1.51  jmcneill 	int32_t *rp, *dp, *hrp, *hp;
   1123  1.51  jmcneill 	int i;
   1124  1.30        pk 
   1125   1.4        ad 	ri = (struct rasops_info *)cookie;
   1126  1.51  jmcneill 	hrp = hp = NULL;
   1127  1.30        pk 
   1128  1.30        pk #ifdef RASOPS_CLIPPING
   1129   1.4        ad 	if ((unsigned)row >= (unsigned)ri->ri_rows)
   1130   1.4        ad 		return;
   1131   1.4        ad 
   1132   1.4        ad 	if (col < 0) {
   1133   1.4        ad 		num += col;
   1134   1.4        ad 		col = 0;
   1135   1.4        ad 	}
   1136   1.4        ad 
   1137   1.4        ad 	if ((col + num) > ri->ri_cols)
   1138   1.4        ad 		num = ri->ri_cols - col;
   1139  1.30        pk 
   1140   1.4        ad 	if (num <= 0)
   1141   1.4        ad 		return;
   1142   1.4        ad #endif
   1143  1.30        pk 
   1144   1.4        ad 	num = num * ri->ri_xscale;
   1145   1.4        ad 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
   1146  1.51  jmcneill 	if (ri->ri_hwbits)
   1147  1.51  jmcneill 		hrp = (int32_t *)(ri->ri_hwbits + row*ri->ri_yscale +
   1148  1.51  jmcneill 		    col*ri->ri_xscale);
   1149   1.4        ad 	height = ri->ri_font->fontheight;
   1150  1.30        pk 	clr = ri->ri_devcmap[(attr >> 16) & 0xf];
   1151  1.30        pk 
   1152   1.4        ad 	/* Don't bother using the full loop for <= 32 pels */
   1153   1.4        ad 	if (num <= 32) {
   1154   1.6        ad 		if (((num | ri->ri_xscale) & 3) == 0) {
   1155   1.6        ad 			/* Word aligned blt */
   1156   1.6        ad 			num >>= 2;
   1157   1.6        ad 
   1158   1.6        ad 			while (height--) {
   1159   1.6        ad 				dp = rp;
   1160   1.6        ad 				DELTA(rp, ri->ri_stride, int32_t *);
   1161  1.51  jmcneill 				if (ri->ri_hwbits) {
   1162  1.51  jmcneill 					hp = hrp;
   1163  1.51  jmcneill 					DELTA(hrp, ri->ri_stride, int32_t *);
   1164  1.51  jmcneill 				}
   1165  1.30        pk 
   1166  1.51  jmcneill 				for (cnt = num; cnt; cnt--) {
   1167   1.6        ad 					*dp++ = clr;
   1168  1.51  jmcneill 					if (ri->ri_hwbits)
   1169  1.51  jmcneill 						*hp++ = clr;
   1170  1.51  jmcneill 				}
   1171   1.6        ad 			}
   1172   1.6        ad 		} else if (((num | ri->ri_xscale) & 1) == 0) {
   1173  1.30        pk 			/*
   1174   1.4        ad 			 * Halfword aligned blt. This is needed so the
   1175  1.30        pk 			 * 15/16 bit ops can use this function.
   1176   1.4        ad 			 */
   1177   1.4        ad 			num >>= 1;
   1178   1.4        ad 
   1179   1.4        ad 			while (height--) {
   1180   1.4        ad 				dp = rp;
   1181   1.4        ad 				DELTA(rp, ri->ri_stride, int32_t *);
   1182  1.51  jmcneill 				if (ri->ri_hwbits) {
   1183  1.51  jmcneill 					hp = hrp;
   1184  1.51  jmcneill 					DELTA(hrp, ri->ri_stride, int32_t *);
   1185  1.51  jmcneill 				}
   1186   1.4        ad 
   1187   1.4        ad 				for (cnt = num; cnt; cnt--) {
   1188   1.4        ad 					*(int16_t *)dp = clr;
   1189   1.4        ad 					DELTA(dp, 2, int32_t *);
   1190  1.51  jmcneill 					if (ri->ri_hwbits) {
   1191  1.51  jmcneill 						*(int16_t *)hp = clr;
   1192  1.51  jmcneill 						DELTA(hp, 2, int32_t *);
   1193  1.51  jmcneill 					}
   1194   1.4        ad 				}
   1195   1.4        ad 			}
   1196   1.4        ad 		} else {
   1197   1.4        ad 			while (height--) {
   1198   1.4        ad 				dp = rp;
   1199   1.4        ad 				DELTA(rp, ri->ri_stride, int32_t *);
   1200  1.51  jmcneill 				if (ri->ri_hwbits) {
   1201  1.51  jmcneill 					hp = hrp;
   1202  1.51  jmcneill 					DELTA(hrp, ri->ri_stride, int32_t *);
   1203  1.51  jmcneill 				}
   1204   1.4        ad 
   1205   1.4        ad 				for (cnt = num; cnt; cnt--) {
   1206   1.4        ad 					*(u_char *)dp = clr;
   1207   1.4        ad 					DELTA(dp, 1, int32_t *);
   1208  1.51  jmcneill 					if (ri->ri_hwbits) {
   1209  1.51  jmcneill 						*(u_char *)hp = clr;
   1210  1.51  jmcneill 						DELTA(hp, 1, int32_t *);
   1211  1.51  jmcneill 					}
   1212   1.4        ad 				}
   1213   1.4        ad 			}
   1214   1.4        ad 		}
   1215  1.30        pk 
   1216   1.4        ad 		return;
   1217   1.4        ad 	}
   1218  1.30        pk 
   1219  1.27  nisimura 	slop1 = (4 - ((long)rp & 3)) & 3;
   1220   1.4        ad 	slop2 = (num - slop1) & 3;
   1221   1.4        ad 	num -= slop1 + slop2;
   1222   1.4        ad 	n8 = num >> 5;
   1223   1.4        ad 	num = (num >> 2) & 7;
   1224   1.4        ad 
   1225   1.4        ad 	while (height--) {
   1226   1.4        ad 		dp = rp;
   1227   1.4        ad 		DELTA(rp, ri->ri_stride, int32_t *);
   1228  1.51  jmcneill 		if (ri->ri_hwbits) {
   1229  1.51  jmcneill 			hp = hrp;
   1230  1.51  jmcneill 			DELTA(hrp, ri->ri_stride, int32_t *);
   1231  1.51  jmcneill 		}
   1232  1.30        pk 
   1233   1.4        ad 		/* Align span to 4 bytes */
   1234   1.4        ad 		if (slop1 & 1) {
   1235   1.4        ad 			*(u_char *)dp = clr;
   1236   1.4        ad 			DELTA(dp, 1, int32_t *);
   1237  1.51  jmcneill 			if (ri->ri_hwbits) {
   1238  1.51  jmcneill 				*(u_char *)hp = clr;
   1239  1.51  jmcneill 				DELTA(hp, 1, int32_t *);
   1240  1.51  jmcneill 			}
   1241   1.4        ad 		}
   1242   1.4        ad 
   1243   1.4        ad 		if (slop1 & 2) {
   1244   1.4        ad 			*(int16_t *)dp = clr;
   1245   1.4        ad 			DELTA(dp, 2, int32_t *);
   1246  1.51  jmcneill 			if (ri->ri_hwbits) {
   1247  1.51  jmcneill 				*(int16_t *)hp = clr;
   1248  1.51  jmcneill 				DELTA(hp, 2, int32_t *);
   1249  1.51  jmcneill 			}
   1250   1.4        ad 		}
   1251  1.30        pk 
   1252   1.4        ad 		/* Write 32 bytes per loop */
   1253   1.4        ad 		for (cnt = n8; cnt; cnt--) {
   1254  1.51  jmcneill 			for (i = 0; i < 8; i++) {
   1255  1.51  jmcneill 				dp[i] = clr;
   1256  1.51  jmcneill 				if (ri->ri_hwbits)
   1257  1.51  jmcneill 					hp[i] = clr;
   1258  1.51  jmcneill 			}
   1259   1.4        ad 			dp += 8;
   1260  1.51  jmcneill 			if (ri->ri_hwbits)
   1261  1.51  jmcneill 				hp += 8;
   1262   1.4        ad 		}
   1263  1.30        pk 
   1264  1.30        pk 		/* Write 4 bytes per loop */
   1265  1.51  jmcneill 		for (cnt = num; cnt; cnt--) {
   1266   1.4        ad 			*dp++ = clr;
   1267  1.51  jmcneill 			if (ri->ri_hwbits)
   1268  1.51  jmcneill 				*hp++ = clr;
   1269  1.51  jmcneill 		}
   1270  1.30        pk 
   1271  1.30        pk 		/* Write unaligned trailing slop */
   1272   1.4        ad 		if (slop2 & 1) {
   1273   1.4        ad 			*(u_char *)dp = clr;
   1274   1.4        ad 			DELTA(dp, 1, int32_t *);
   1275  1.51  jmcneill 			if (ri->ri_hwbits) {
   1276  1.51  jmcneill 				*(u_char *)hp = clr;
   1277  1.51  jmcneill 				DELTA(hp, 1, int32_t *);
   1278  1.51  jmcneill 			}
   1279   1.4        ad 		}
   1280   1.4        ad 
   1281  1.51  jmcneill 		if (slop2 & 2) {
   1282   1.4        ad 			*(int16_t *)dp = clr;
   1283  1.51  jmcneill 			if (ri->ri_hwbits)
   1284  1.51  jmcneill 				*(int16_t *)hp = clr;
   1285  1.51  jmcneill 		}
   1286   1.4        ad 	}
   1287   1.1        ad }
   1288  1.55      ober 
   1289  1.55      ober #if NRASOPS_ROTATION > 0
   1290  1.55      ober /*
   1291  1.55      ober  * Quarter clockwise rotation routines (originally intended for the
   1292  1.55      ober  * built-in Zaurus C3x00 display in 16bpp).
   1293  1.55      ober  */
   1294  1.55      ober 
   1295  1.55      ober #include <sys/malloc.h>
   1296  1.55      ober 
   1297  1.55      ober static void
   1298  1.62    nonaka rasops_rotate_font(int *cookie, int rotate)
   1299  1.55      ober {
   1300  1.55      ober 	struct rotatedfont *f;
   1301  1.55      ober 	int ncookie;
   1302  1.55      ober 
   1303  1.55      ober 	SLIST_FOREACH(f, &rotatedfonts, rf_next) {
   1304  1.55      ober 		if (f->rf_cookie == *cookie) {
   1305  1.55      ober 			*cookie = f->rf_rotated;
   1306  1.55      ober 			return;
   1307  1.55      ober 		}
   1308  1.55      ober 	}
   1309  1.55      ober 
   1310  1.55      ober 	/*
   1311  1.55      ober 	 * We did not find a rotated version of this font. Ask the wsfont
   1312  1.55      ober 	 * code to compute one for us.
   1313  1.55      ober 	 */
   1314  1.55      ober 
   1315  1.55      ober 	f = malloc(sizeof(struct rotatedfont), M_DEVBUF, M_WAITOK);
   1316  1.55      ober 	if (f == NULL)
   1317  1.72  riastrad 		goto fail0;
   1318  1.55      ober 
   1319  1.62    nonaka 	if ((ncookie = wsfont_rotate(*cookie, rotate)) == -1)
   1320  1.72  riastrad 		goto fail1;
   1321  1.55      ober 
   1322  1.55      ober 	f->rf_cookie = *cookie;
   1323  1.55      ober 	f->rf_rotated = ncookie;
   1324  1.55      ober 	SLIST_INSERT_HEAD(&rotatedfonts, f, rf_next);
   1325  1.55      ober 
   1326  1.55      ober 	*cookie = ncookie;
   1327  1.72  riastrad 	return;
   1328  1.72  riastrad 
   1329  1.72  riastrad fail1:	free(f, M_DEVBUF);
   1330  1.72  riastrad fail0:	/* Just use the existing font, I guess...  */
   1331  1.72  riastrad 	return;
   1332  1.55      ober }
   1333  1.55      ober 
   1334  1.55      ober static void
   1335  1.60       dsl rasops_copychar(void *cookie, int srcrow, int dstrow, int srccol, int dstcol)
   1336  1.55      ober {
   1337  1.55      ober 	struct rasops_info *ri;
   1338  1.55      ober 	u_char *sp, *dp;
   1339  1.55      ober 	int height;
   1340  1.55      ober 	int r_srcrow, r_dstrow, r_srccol, r_dstcol;
   1341  1.55      ober 
   1342  1.55      ober 	ri = (struct rasops_info *)cookie;
   1343  1.55      ober 
   1344  1.55      ober 	r_srcrow = srccol;
   1345  1.55      ober 	r_dstrow = dstcol;
   1346  1.55      ober 	r_srccol = ri->ri_rows - srcrow - 1;
   1347  1.55      ober 	r_dstcol = ri->ri_rows - dstrow - 1;
   1348  1.55      ober 
   1349  1.55      ober 	r_srcrow *= ri->ri_yscale;
   1350  1.55      ober 	r_dstrow *= ri->ri_yscale;
   1351  1.55      ober 	height = ri->ri_font->fontheight;
   1352  1.55      ober 
   1353  1.55      ober 	sp = ri->ri_bits + r_srcrow + r_srccol * ri->ri_xscale;
   1354  1.55      ober 	dp = ri->ri_bits + r_dstrow + r_dstcol * ri->ri_xscale;
   1355  1.55      ober 
   1356  1.55      ober 	while (height--) {
   1357  1.55      ober 		memmove(dp, sp, ri->ri_xscale);
   1358  1.55      ober 		dp += ri->ri_stride;
   1359  1.55      ober 		sp += ri->ri_stride;
   1360  1.55      ober 	}
   1361  1.55      ober }
   1362  1.55      ober 
   1363  1.55      ober static void
   1364  1.62    nonaka rasops_putchar_rotated_cw(void *cookie, int row, int col, u_int uc, long attr)
   1365  1.55      ober {
   1366  1.55      ober 	struct rasops_info *ri;
   1367  1.55      ober 	u_char *rp;
   1368  1.55      ober 	int height;
   1369  1.55      ober 
   1370  1.55      ober 	ri = (struct rasops_info *)cookie;
   1371  1.55      ober 
   1372  1.56       mjf 	if (__predict_false((unsigned int)row > ri->ri_rows ||
   1373  1.56       mjf 	    (unsigned int)col > ri->ri_cols))
   1374  1.56       mjf 		return;
   1375  1.56       mjf 
   1376  1.56       mjf 	/* Avoid underflow */
   1377  1.56       mjf 	if ((ri->ri_rows - row - 1) < 0)
   1378  1.56       mjf 		return;
   1379  1.56       mjf 
   1380  1.55      ober 	/* Do rotated char sans (side)underline */
   1381  1.55      ober 	ri->ri_real_ops.putchar(cookie, col, ri->ri_rows - row - 1, uc,
   1382  1.55      ober 	    attr & ~1);
   1383  1.55      ober 
   1384  1.55      ober 	/* Do rotated underline */
   1385  1.55      ober 	rp = ri->ri_bits + col * ri->ri_yscale + (ri->ri_rows - row - 1) *
   1386  1.55      ober 	    ri->ri_xscale;
   1387  1.55      ober 	height = ri->ri_font->fontheight;
   1388  1.55      ober 
   1389  1.55      ober 	/* XXX this assumes 16-bit color depth */
   1390  1.55      ober 	if ((attr & 1) != 0) {
   1391  1.55      ober 		int16_t c = (int16_t)ri->ri_devcmap[((u_int)attr >> 24) & 0xf];
   1392  1.55      ober 
   1393  1.55      ober 		while (height--) {
   1394  1.55      ober 			*(int16_t *)rp = c;
   1395  1.55      ober 			rp += ri->ri_stride;
   1396  1.55      ober 		}
   1397  1.55      ober 	}
   1398  1.55      ober }
   1399  1.55      ober 
   1400  1.55      ober static void
   1401  1.62    nonaka rasops_erasecols_rotated_cw(void *cookie, int row, int col, int num, long attr)
   1402  1.55      ober {
   1403  1.55      ober 	struct rasops_info *ri;
   1404  1.55      ober 	int i;
   1405  1.55      ober 
   1406  1.55      ober 	ri = (struct rasops_info *)cookie;
   1407  1.55      ober 
   1408  1.55      ober 	for (i = col; i < col + num; i++)
   1409  1.55      ober 		ri->ri_ops.putchar(cookie, row, i, ' ', attr);
   1410  1.55      ober }
   1411  1.55      ober 
   1412  1.55      ober /* XXX: these could likely be optimised somewhat. */
   1413  1.55      ober static void
   1414  1.62    nonaka rasops_copyrows_rotated_cw(void *cookie, int src, int dst, int num)
   1415  1.55      ober {
   1416  1.55      ober 	struct rasops_info *ri = (struct rasops_info *)cookie;
   1417  1.55      ober 	int col, roff;
   1418  1.55      ober 
   1419  1.55      ober 	if (src > dst)
   1420  1.55      ober 		for (roff = 0; roff < num; roff++)
   1421  1.55      ober 			for (col = 0; col < ri->ri_cols; col++)
   1422  1.55      ober 				rasops_copychar(cookie, src + roff, dst + roff,
   1423  1.55      ober 				    col, col);
   1424  1.55      ober 	else
   1425  1.55      ober 		for (roff = num - 1; roff >= 0; roff--)
   1426  1.55      ober 			for (col = 0; col < ri->ri_cols; col++)
   1427  1.55      ober 				rasops_copychar(cookie, src + roff, dst + roff,
   1428  1.55      ober 				    col, col);
   1429  1.55      ober }
   1430  1.55      ober 
   1431  1.55      ober static void
   1432  1.62    nonaka rasops_copycols_rotated_cw(void *cookie, int row, int src, int dst, int num)
   1433  1.55      ober {
   1434  1.55      ober 	int coff;
   1435  1.55      ober 
   1436  1.55      ober 	if (src > dst)
   1437  1.55      ober 		for (coff = 0; coff < num; coff++)
   1438  1.55      ober 			rasops_copychar(cookie, row, row, src + coff, dst + coff);
   1439  1.55      ober 	else
   1440  1.55      ober 		for (coff = num - 1; coff >= 0; coff--)
   1441  1.55      ober 			rasops_copychar(cookie, row, row, src + coff, dst + coff);
   1442  1.55      ober }
   1443  1.55      ober 
   1444  1.55      ober static void
   1445  1.62    nonaka rasops_eraserows_rotated_cw(void *cookie, int row, int num, long attr)
   1446  1.55      ober {
   1447  1.55      ober 	struct rasops_info *ri;
   1448  1.55      ober 	int col, rn;
   1449  1.55      ober 
   1450  1.55      ober 	ri = (struct rasops_info *)cookie;
   1451  1.55      ober 
   1452  1.55      ober 	for (rn = row; rn < row + num; rn++)
   1453  1.55      ober 		for (col = 0; col < ri->ri_cols; col++)
   1454  1.55      ober 			ri->ri_ops.putchar(cookie, rn, col, ' ', attr);
   1455  1.55      ober }
   1456  1.62    nonaka 
   1457  1.62    nonaka /*
   1458  1.62    nonaka  * Quarter counter-clockwise rotation routines (originally intended for the
   1459  1.62    nonaka  * built-in Sharp W-ZERO3 display in 16bpp).
   1460  1.62    nonaka  */
   1461  1.62    nonaka static void
   1462  1.62    nonaka rasops_copychar_ccw(void *cookie, int srcrow, int dstrow, int srccol, int dstcol)
   1463  1.62    nonaka {
   1464  1.62    nonaka 	struct rasops_info *ri;
   1465  1.62    nonaka 	u_char *sp, *dp;
   1466  1.62    nonaka 	int height;
   1467  1.62    nonaka 	int r_srcrow, r_dstrow, r_srccol, r_dstcol;
   1468  1.62    nonaka 
   1469  1.62    nonaka 	ri = (struct rasops_info *)cookie;
   1470  1.62    nonaka 
   1471  1.62    nonaka 	r_srcrow = ri->ri_cols - srccol - 1;
   1472  1.62    nonaka 	r_dstrow = ri->ri_cols - dstcol - 1;
   1473  1.62    nonaka 	r_srccol = srcrow;
   1474  1.62    nonaka 	r_dstcol = dstrow;
   1475  1.62    nonaka 
   1476  1.62    nonaka 	r_srcrow *= ri->ri_yscale;
   1477  1.62    nonaka 	r_dstrow *= ri->ri_yscale;
   1478  1.62    nonaka 	height = ri->ri_font->fontheight;
   1479  1.62    nonaka 
   1480  1.62    nonaka 	sp = ri->ri_bits + r_srcrow + r_srccol * ri->ri_xscale;
   1481  1.62    nonaka 	dp = ri->ri_bits + r_dstrow + r_dstcol * ri->ri_xscale;
   1482  1.62    nonaka 
   1483  1.62    nonaka 	while (height--) {
   1484  1.62    nonaka 		memmove(dp, sp, ri->ri_xscale);
   1485  1.62    nonaka 		dp += ri->ri_stride;
   1486  1.62    nonaka 		sp += ri->ri_stride;
   1487  1.62    nonaka 	}
   1488  1.62    nonaka }
   1489  1.62    nonaka 
   1490  1.62    nonaka static void
   1491  1.62    nonaka rasops_putchar_rotated_ccw(void *cookie, int row, int col, u_int uc, long attr)
   1492  1.62    nonaka {
   1493  1.62    nonaka 	struct rasops_info *ri;
   1494  1.62    nonaka 	u_char *rp;
   1495  1.62    nonaka 	int height;
   1496  1.62    nonaka 
   1497  1.62    nonaka 	ri = (struct rasops_info *)cookie;
   1498  1.62    nonaka 
   1499  1.62    nonaka 	if (__predict_false((unsigned int)row > ri->ri_rows ||
   1500  1.62    nonaka 	    (unsigned int)col > ri->ri_cols))
   1501  1.62    nonaka 		return;
   1502  1.62    nonaka 
   1503  1.62    nonaka 	/* Avoid underflow */
   1504  1.62    nonaka 	if ((ri->ri_cols - col - 1) < 0)
   1505  1.62    nonaka 		return;
   1506  1.62    nonaka 
   1507  1.62    nonaka 	/* Do rotated char sans (side)underline */
   1508  1.62    nonaka 	ri->ri_real_ops.putchar(cookie, ri->ri_cols - col - 1, row, uc,
   1509  1.62    nonaka 	    attr & ~1);
   1510  1.62    nonaka 
   1511  1.62    nonaka 	/* Do rotated underline */
   1512  1.62    nonaka 	rp = ri->ri_bits + (ri->ri_cols - col - 1) * ri->ri_yscale +
   1513  1.65   tsutsui 	    row * ri->ri_xscale +
   1514  1.65   tsutsui 	    (ri->ri_font->fontwidth - 1) * ri->ri_pelbytes;
   1515  1.62    nonaka 	height = ri->ri_font->fontheight;
   1516  1.62    nonaka 
   1517  1.62    nonaka 	/* XXX this assumes 16-bit color depth */
   1518  1.62    nonaka 	if ((attr & 1) != 0) {
   1519  1.62    nonaka 		int16_t c = (int16_t)ri->ri_devcmap[((u_int)attr >> 24) & 0xf];
   1520  1.62    nonaka 
   1521  1.62    nonaka 		while (height--) {
   1522  1.62    nonaka 			*(int16_t *)rp = c;
   1523  1.62    nonaka 			rp += ri->ri_stride;
   1524  1.62    nonaka 		}
   1525  1.62    nonaka 	}
   1526  1.62    nonaka }
   1527  1.62    nonaka 
   1528  1.62    nonaka /* XXX: these could likely be optimised somewhat. */
   1529  1.62    nonaka static void
   1530  1.62    nonaka rasops_copyrows_rotated_ccw(void *cookie, int src, int dst, int num)
   1531  1.62    nonaka {
   1532  1.62    nonaka 	struct rasops_info *ri = (struct rasops_info *)cookie;
   1533  1.62    nonaka 	int col, roff;
   1534  1.62    nonaka 
   1535  1.62    nonaka 	if (src > dst)
   1536  1.62    nonaka 		for (roff = 0; roff < num; roff++)
   1537  1.62    nonaka 			for (col = 0; col < ri->ri_cols; col++)
   1538  1.62    nonaka 				rasops_copychar_ccw(cookie,
   1539  1.62    nonaka 				    src + roff, dst + roff, col, col);
   1540  1.62    nonaka 	else
   1541  1.62    nonaka 		for (roff = num - 1; roff >= 0; roff--)
   1542  1.62    nonaka 			for (col = 0; col < ri->ri_cols; col++)
   1543  1.62    nonaka 				rasops_copychar_ccw(cookie,
   1544  1.62    nonaka 				    src + roff, dst + roff, col, col);
   1545  1.62    nonaka }
   1546  1.62    nonaka 
   1547  1.62    nonaka static void
   1548  1.62    nonaka rasops_copycols_rotated_ccw(void *cookie, int row, int src, int dst, int num)
   1549  1.62    nonaka {
   1550  1.62    nonaka 	int coff;
   1551  1.62    nonaka 
   1552  1.62    nonaka 	if (src > dst)
   1553  1.62    nonaka 		for (coff = 0; coff < num; coff++)
   1554  1.62    nonaka 			rasops_copychar_ccw(cookie, row, row,
   1555  1.62    nonaka 			    src + coff, dst + coff);
   1556  1.62    nonaka 	else
   1557  1.62    nonaka 		for (coff = num - 1; coff >= 0; coff--)
   1558  1.62    nonaka 			rasops_copychar_ccw(cookie, row, row,
   1559  1.62    nonaka 			    src + coff, dst + coff);
   1560  1.62    nonaka }
   1561  1.55      ober #endif	/* NRASOPS_ROTATION */
   1562  1.63  macallan 
   1563  1.63  macallan void
   1564  1.63  macallan rasops_make_box_chars_16(struct rasops_info *ri)
   1565  1.63  macallan {
   1566  1.63  macallan 	uint16_t vert_mask, hmask_left, hmask_right;
   1567  1.63  macallan 	uint16_t *data = (uint16_t *)ri->ri_optfont.data;
   1568  1.63  macallan 	int c, i, mid;
   1569  1.63  macallan 
   1570  1.63  macallan 	vert_mask = 0xc000 >> ((ri->ri_font->fontwidth >> 1) - 1);
   1571  1.63  macallan 	hmask_left = 0xff00 << (8 - (ri->ri_font->fontwidth >> 1));
   1572  1.63  macallan 	hmask_right = hmask_left >> ((ri->ri_font->fontwidth + 1)>> 1);
   1573  1.63  macallan 	mid = (ri->ri_font->fontheight + 1) >> 1;
   1574  1.63  macallan 
   1575  1.63  macallan 	/* 0x00 would be empty anyway so don't bother */
   1576  1.63  macallan 	for (c = 1; c < 16; c++) {
   1577  1.63  macallan 		data += ri->ri_font->fontheight;
   1578  1.63  macallan 		if (c & 1) {
   1579  1.63  macallan 			/* upper segment */
   1580  1.63  macallan 			for (i = 0; i < mid; i++)
   1581  1.63  macallan 				data[i] = vert_mask;
   1582  1.63  macallan 		}
   1583  1.63  macallan 		if (c & 4) {
   1584  1.63  macallan 			/* lower segment */
   1585  1.63  macallan 			for (i = mid; i < ri->ri_font->fontheight; i++)
   1586  1.63  macallan 				data[i] = vert_mask;
   1587  1.63  macallan 		}
   1588  1.63  macallan 		if (c & 2) {
   1589  1.63  macallan 			/* right segment */
   1590  1.63  macallan 			i = ri->ri_font->fontheight >> 1;
   1591  1.63  macallan 			data[mid - 1] |= hmask_right;
   1592  1.63  macallan 			data[mid] |= hmask_right;
   1593  1.63  macallan 		}
   1594  1.63  macallan 		if (c & 8) {
   1595  1.63  macallan 			/* left segment */
   1596  1.63  macallan 			data[mid - 1] |= hmask_left;
   1597  1.63  macallan 			data[mid] |= hmask_left;
   1598  1.63  macallan 		}
   1599  1.63  macallan 	}
   1600  1.63  macallan }
   1601  1.63  macallan 
   1602  1.63  macallan void
   1603  1.63  macallan rasops_make_box_chars_8(struct rasops_info *ri)
   1604  1.63  macallan {
   1605  1.63  macallan 	uint8_t vert_mask, hmask_left, hmask_right;
   1606  1.63  macallan 	uint8_t *data = (uint8_t *)ri->ri_optfont.data;
   1607  1.63  macallan 	int c, i, mid;
   1608  1.63  macallan 
   1609  1.63  macallan 	vert_mask = 0xc0 >> ((ri->ri_font->fontwidth >> 1) - 1);
   1610  1.63  macallan 	hmask_left = 0xf0 << (4 - (ri->ri_font->fontwidth >> 1));
   1611  1.63  macallan 	hmask_right = hmask_left >> ((ri->ri_font->fontwidth + 1)>> 1);
   1612  1.63  macallan 	mid = (ri->ri_font->fontheight + 1) >> 1;
   1613  1.63  macallan 
   1614  1.63  macallan 	/* 0x00 would be empty anyway so don't bother */
   1615  1.63  macallan 	for (c = 1; c < 16; c++) {
   1616  1.63  macallan 		data += ri->ri_font->fontheight;
   1617  1.63  macallan 		if (c & 1) {
   1618  1.63  macallan 			/* upper segment */
   1619  1.63  macallan 			for (i = 0; i < mid; i++)
   1620  1.63  macallan 				data[i] = vert_mask;
   1621  1.63  macallan 		}
   1622  1.63  macallan 		if (c & 4) {
   1623  1.63  macallan 			/* lower segment */
   1624  1.63  macallan 			for (i = mid; i < ri->ri_font->fontheight; i++)
   1625  1.63  macallan 				data[i] = vert_mask;
   1626  1.63  macallan 		}
   1627  1.63  macallan 		if (c & 2) {
   1628  1.63  macallan 			/* right segment */
   1629  1.63  macallan 			i = ri->ri_font->fontheight >> 1;
   1630  1.63  macallan 			data[mid - 1] |= hmask_right;
   1631  1.63  macallan 			data[mid] |= hmask_right;
   1632  1.63  macallan 		}
   1633  1.63  macallan 		if (c & 8) {
   1634  1.63  macallan 			/* left segment */
   1635  1.63  macallan 			data[mid - 1] |= hmask_left;
   1636  1.63  macallan 			data[mid] |= hmask_left;
   1637  1.63  macallan 		}
   1638  1.63  macallan 	}
   1639  1.63  macallan }
   1640  1.63  macallan 
   1641  1.63  macallan void
   1642  1.63  macallan rasops_make_box_chars_32(struct rasops_info *ri)
   1643  1.63  macallan {
   1644  1.63  macallan 	uint32_t vert_mask, hmask_left, hmask_right;
   1645  1.63  macallan 	uint32_t *data = (uint32_t *)ri->ri_optfont.data;
   1646  1.63  macallan 	int c, i, mid;
   1647  1.63  macallan 
   1648  1.63  macallan 	vert_mask = 0xc0000000 >> ((ri->ri_font->fontwidth >> 1) - 1);
   1649  1.63  macallan 	hmask_left = 0xffff0000 << (16 - (ri->ri_font->fontwidth >> 1));
   1650  1.63  macallan 	hmask_right = hmask_left >> ((ri->ri_font->fontwidth + 1)>> 1);
   1651  1.63  macallan 	mid = (ri->ri_font->fontheight + 1) >> 1;
   1652  1.63  macallan 
   1653  1.63  macallan 	/* 0x00 would be empty anyway so don't bother */
   1654  1.63  macallan 	for (c = 1; c < 16; c++) {
   1655  1.63  macallan 		data += ri->ri_font->fontheight;
   1656  1.63  macallan 		if (c & 1) {
   1657  1.63  macallan 			/* upper segment */
   1658  1.63  macallan 			for (i = 0; i < mid; i++)
   1659  1.63  macallan 				data[i] = vert_mask;
   1660  1.63  macallan 		}
   1661  1.63  macallan 		if (c & 4) {
   1662  1.63  macallan 			/* lower segment */
   1663  1.63  macallan 			for (i = mid; i < ri->ri_font->fontheight; i++)
   1664  1.63  macallan 				data[i] = vert_mask;
   1665  1.63  macallan 		}
   1666  1.63  macallan 		if (c & 2) {
   1667  1.63  macallan 			/* right segment */
   1668  1.63  macallan 			i = ri->ri_font->fontheight >> 1;
   1669  1.63  macallan 			data[mid - 1] |= hmask_right;
   1670  1.63  macallan 			data[mid] |= hmask_right;
   1671  1.63  macallan 		}
   1672  1.63  macallan 		if (c & 8) {
   1673  1.63  macallan 			/* left segment */
   1674  1.63  macallan 			data[mid - 1] |= hmask_left;
   1675  1.63  macallan 			data[mid] |= hmask_left;
   1676  1.63  macallan 		}
   1677  1.63  macallan 	}
   1678  1.63  macallan }
   1679  1.67  macallan 
   1680  1.67  macallan void
   1681  1.67  macallan rasops_make_box_chars_alpha(struct rasops_info *ri)
   1682  1.67  macallan {
   1683  1.67  macallan 	uint8_t *data = (uint8_t *)ri->ri_optfont.data;
   1684  1.67  macallan 	uint8_t *ddata;
   1685  1.67  macallan 	int c, i, hmid, vmid, wi, he;
   1686  1.67  macallan 
   1687  1.67  macallan 	wi = ri->ri_font->fontwidth;
   1688  1.67  macallan 	he = ri->ri_font->fontheight;
   1689  1.67  macallan 
   1690  1.67  macallan 	vmid = (he + 1) >> 1;
   1691  1.67  macallan 	hmid = (wi + 1) >> 1;
   1692  1.67  macallan 
   1693  1.67  macallan 	/* 0x00 would be empty anyway so don't bother */
   1694  1.67  macallan 	for (c = 1; c < 16; c++) {
   1695  1.67  macallan 		data += ri->ri_fontscale;
   1696  1.67  macallan 		if (c & 1) {
   1697  1.67  macallan 			/* upper segment */
   1698  1.67  macallan 			ddata = data + hmid;
   1699  1.67  macallan 			for (i = 0; i <= vmid; i++) {
   1700  1.67  macallan 				*ddata = 0xff;
   1701  1.67  macallan 				ddata += wi;
   1702  1.67  macallan 			}
   1703  1.67  macallan 		}
   1704  1.67  macallan 		if (c & 4) {
   1705  1.67  macallan 			/* lower segment */
   1706  1.67  macallan 			ddata = data + wi * vmid + hmid;
   1707  1.67  macallan 			for (i = vmid; i < he; i++) {
   1708  1.67  macallan 				*ddata = 0xff;
   1709  1.67  macallan 				ddata += wi;
   1710  1.67  macallan 			}
   1711  1.67  macallan 		}
   1712  1.67  macallan 		if (c & 2) {
   1713  1.67  macallan 			/* right segment */
   1714  1.67  macallan 			ddata = data + wi * vmid + hmid;
   1715  1.67  macallan 			for (i = hmid; i < wi; i++) {
   1716  1.67  macallan 				*ddata = 0xff;
   1717  1.67  macallan 				ddata++;
   1718  1.67  macallan 			}
   1719  1.67  macallan 		}
   1720  1.67  macallan 		if (c & 8) {
   1721  1.67  macallan 			/* left segment */
   1722  1.67  macallan 			ddata = data + wi * vmid;
   1723  1.67  macallan 			for (i = 0; i <= hmid; i++) {
   1724  1.67  macallan 				*ddata = 0xff;
   1725  1.67  macallan 				ddata++;
   1726  1.67  macallan 			}
   1727  1.67  macallan 		}
   1728  1.67  macallan 	}
   1729  1.67  macallan }
   1730  1.71  macallan 
   1731  1.71  macallan /*
   1732  1.71  macallan  * Return a colour map appropriate for the given struct rasops_info in the
   1733  1.71  macallan  * same form used by rasops_cmap[]
   1734  1.71  macallan  * For now this is either a copy of rasops_cmap[] or an R3G3B2 map, it should
   1735  1.71  macallan  * probably be a linear ( or gamma corrected? ) ramp for higher depths.
   1736  1.71  macallan  */
   1737  1.71  macallan 
   1738  1.71  macallan int
   1739  1.71  macallan rasops_get_cmap(struct rasops_info *ri, uint8_t *palette, size_t bytes)
   1740  1.71  macallan {
   1741  1.71  macallan 	if ((ri->ri_depth == 8 ) && ((ri->ri_flg & RI_8BIT_IS_RGB) > 0)) {
   1742  1.71  macallan 		/* generate an R3G3B2 palette */
   1743  1.71  macallan 		int i, idx = 0;
   1744  1.71  macallan 		uint8_t tmp;
   1745  1.71  macallan 
   1746  1.71  macallan 		if (bytes < 768)
   1747  1.71  macallan 			return EINVAL;
   1748  1.71  macallan 		for (i = 0; i < 256; i++) {
   1749  1.71  macallan 			tmp = i & 0xe0;
   1750  1.71  macallan 			/*
   1751  1.71  macallan 			 * replicate bits so 0xe0 maps to a red value of 0xff
   1752  1.71  macallan 			 * in order to make white look actually white
   1753  1.71  macallan 			 */
   1754  1.71  macallan 			tmp |= (tmp >> 3) | (tmp >> 6);
   1755  1.71  macallan 			palette[idx] = tmp;
   1756  1.71  macallan 			idx++;
   1757  1.71  macallan 
   1758  1.71  macallan 			tmp = (i & 0x1c) << 3;
   1759  1.71  macallan 			tmp |= (tmp >> 3) | (tmp >> 6);
   1760  1.71  macallan 			palette[idx] = tmp;
   1761  1.71  macallan 			idx++;
   1762  1.71  macallan 
   1763  1.71  macallan 			tmp = (i & 0x03) << 6;
   1764  1.71  macallan 			tmp |= tmp >> 2;
   1765  1.71  macallan 			tmp |= tmp >> 4;
   1766  1.71  macallan 			palette[idx] = tmp;
   1767  1.71  macallan 			idx++;
   1768  1.71  macallan 		}
   1769  1.71  macallan 	} else {
   1770  1.71  macallan 		memcpy(palette, rasops_cmap, MIN(bytes, sizeof(rasops_cmap)));
   1771  1.71  macallan 	}
   1772  1.71  macallan 	return 0;
   1773  1.71  macallan }
   1774