Home | History | Annotate | Line # | Download | only in rasops
rasops15.c revision 1.7.2.1
      1  1.7.2.1  minoura /* 	$NetBSD: rasops15.c,v 1.7.2.1 2000/06/22 17:08:03 minoura Exp $	*/
      2      1.1       ad 
      3      1.4       ad /*-
      4      1.4       ad  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5      1.1       ad  * All rights reserved.
      6      1.1       ad  *
      7      1.4       ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.7.2.1  minoura  * by Andrew Doran.
      9      1.4       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.4       ad  * 3. All advertising materials mentioning features or use of this software
     19      1.4       ad  *    must display the following acknowledgement:
     20      1.4       ad  *	This product includes software developed by the NetBSD
     21      1.4       ad  *	Foundation, Inc. and its contributors.
     22      1.4       ad  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.4       ad  *    contributors may be used to endorse or promote products derived
     24      1.4       ad  *    from this software without specific prior written permission.
     25      1.1       ad  *
     26      1.4       ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.4       ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.4       ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.4       ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.4       ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.4       ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.4       ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.4       ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.4       ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.4       ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.4       ad  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1       ad  */
     38      1.2       ad 
     39      1.1       ad #include "opt_rasops.h"
     40      1.1       ad #include <sys/cdefs.h>
     41  1.7.2.1  minoura __KERNEL_RCSID(0, "$NetBSD: rasops15.c,v 1.7.2.1 2000/06/22 17:08:03 minoura Exp $");
     42      1.1       ad 
     43      1.1       ad #include <sys/types.h>
     44      1.1       ad #include <sys/param.h>
     45      1.1       ad #include <sys/systm.h>
     46      1.1       ad #include <sys/time.h>
     47      1.1       ad 
     48      1.1       ad #include <dev/wscons/wsdisplayvar.h>
     49      1.1       ad #include <dev/wscons/wsconsio.h>
     50      1.1       ad #include <dev/rasops/rasops.h>
     51      1.1       ad 
     52      1.1       ad static void 	rasops15_putchar __P((void *, int, int, u_int, long attr));
     53      1.5       ad #ifndef RASOPS_SMALL
     54      1.1       ad static void 	rasops15_putchar8 __P((void *, int, int, u_int, long attr));
     55      1.1       ad static void 	rasops15_putchar12 __P((void *, int, int, u_int, long attr));
     56      1.1       ad static void 	rasops15_putchar16 __P((void *, int, int, u_int, long attr));
     57      1.1       ad static void	rasops15_makestamp __P((struct rasops_info *, long));
     58      1.5       ad #endif
     59      1.1       ad 
     60      1.7       pk /*
     61      1.7       pk  * (2x2)x1 stamp for optimized character blitting
     62      1.1       ad  */
     63      1.1       ad static int32_t	stamp[32];
     64      1.1       ad static long	stamp_attr;
     65      1.1       ad static int	stamp_mutex;	/* XXX see note in readme */
     66      1.1       ad 
     67      1.1       ad /*
     68      1.1       ad  * XXX this confuses the hell out of gcc2 (not egcs) which always insists
     69      1.1       ad  * that the shift count is negative.
     70      1.1       ad  *
     71      1.1       ad  * offset = STAMP_SHIFT(fontbits, nibble #) & STAMP_MASK
     72      1.1       ad  * destination int32_t[0] = STAMP_READ(offset)
     73      1.1       ad  * destination int32_t[1] = STAMP_READ(offset + 4)
     74      1.1       ad  */
     75      1.1       ad #define STAMP_SHIFT(fb,n)	((n*4-3) >= 0 ? (fb)>>(n*4-3):(fb)<<-(n*4-3))
     76      1.1       ad #define STAMP_MASK		(15 << 3)
     77      1.1       ad #define STAMP_READ(o)		(*(int32_t *)((caddr_t)stamp + (o)))
     78      1.1       ad 
     79      1.1       ad /*
     80      1.1       ad  * Initalize rasops_info struct for this colordepth.
     81      1.1       ad  */
     82      1.1       ad void
     83      1.1       ad rasops15_init(ri)
     84      1.1       ad 	struct rasops_info *ri;
     85      1.1       ad {
     86      1.1       ad 
     87      1.1       ad 	switch (ri->ri_font->fontwidth) {
     88      1.5       ad #ifndef RASOPS_SMALL
     89      1.1       ad 	case 8:
     90      1.1       ad 		ri->ri_ops.putchar = rasops15_putchar8;
     91      1.1       ad 		break;
     92      1.7       pk 
     93      1.1       ad 	case 12:
     94      1.1       ad 		ri->ri_ops.putchar = rasops15_putchar12;
     95      1.1       ad 		break;
     96      1.7       pk 
     97      1.1       ad 	case 16:
     98      1.1       ad 		ri->ri_ops.putchar = rasops15_putchar16;
     99      1.1       ad 		break;
    100      1.5       ad #endif	/* !RASOPS_SMALL */
    101      1.1       ad 	default:
    102      1.1       ad 		ri->ri_ops.putchar = rasops15_putchar;
    103      1.1       ad 		break;
    104      1.1       ad 	}
    105      1.7       pk 
    106      1.1       ad 	if (ri->ri_rnum == 0) {
    107      1.1       ad 		ri->ri_rnum = 5;
    108      1.1       ad 		ri->ri_rpos = 0;
    109      1.1       ad 		ri->ri_gnum = 5 + (ri->ri_depth == 16);
    110      1.1       ad 		ri->ri_gpos = 5;
    111      1.1       ad 		ri->ri_bnum = 5;
    112      1.1       ad 		ri->ri_bpos = 10 + (ri->ri_depth == 16);
    113      1.1       ad 	}
    114      1.1       ad }
    115      1.1       ad 
    116      1.1       ad /*
    117      1.1       ad  * Paint a single character.
    118      1.1       ad  */
    119      1.1       ad static void
    120      1.1       ad rasops15_putchar(cookie, row, col, uc, attr)
    121      1.1       ad 	void *cookie;
    122      1.1       ad 	int row, col;
    123      1.1       ad 	u_int uc;
    124      1.1       ad 	long attr;
    125      1.1       ad {
    126      1.5       ad 	int fb, width, height, cnt, clr[2];
    127      1.1       ad 	struct rasops_info *ri;
    128      1.1       ad 	u_char *dp, *rp, *fr;
    129      1.7       pk 
    130      1.1       ad 	ri = (struct rasops_info *)cookie;
    131      1.1       ad 
    132      1.7       pk #ifdef RASOPS_CLIPPING
    133      1.7       pk 	/* Catches 'row < 0' case too */
    134      1.1       ad 	if ((unsigned)row >= (unsigned)ri->ri_rows)
    135      1.1       ad 		return;
    136      1.1       ad 
    137      1.1       ad 	if ((unsigned)col >= (unsigned)ri->ri_cols)
    138      1.1       ad 		return;
    139      1.1       ad #endif
    140      1.7       pk 
    141      1.1       ad 	rp = ri->ri_bits + row * ri->ri_yscale + col * ri->ri_xscale;
    142      1.1       ad 	height = ri->ri_font->fontheight;
    143      1.1       ad 	width = ri->ri_font->fontwidth;
    144      1.7       pk 
    145      1.7       pk 	clr[1] = ri->ri_devcmap[((u_int)attr >> 24) & 0xf];
    146      1.7       pk 	clr[0] = ri->ri_devcmap[((u_int)attr >> 16) & 0xf];
    147      1.1       ad 
    148      1.3       ad 	if (uc == ' ') {
    149      1.7       pk 		int16_t c = (int16_t)clr[0];
    150      1.3       ad 		while (height--) {
    151      1.3       ad 			dp = rp;
    152      1.3       ad 			rp += ri->ri_stride;
    153      1.7       pk 
    154      1.3       ad 			for (cnt = width; cnt; cnt--) {
    155      1.7       pk 				*(int16_t *)dp = c;
    156      1.3       ad 				dp += 2;
    157      1.3       ad 			}
    158      1.7       pk 		}
    159      1.3       ad 	} else {
    160      1.3       ad 		uc -= ri->ri_font->firstchar;
    161      1.3       ad 		fr = (u_char *)ri->ri_font->data + uc * ri->ri_fontscale;
    162      1.3       ad 
    163      1.3       ad 		while (height--) {
    164      1.3       ad 			dp = rp;
    165      1.3       ad 			fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) | (fr[0] << 24);
    166      1.3       ad 			fr += ri->ri_font->stride;
    167      1.3       ad 			rp += ri->ri_stride;
    168      1.7       pk 
    169      1.3       ad 			for (cnt = width; cnt; cnt--) {
    170      1.3       ad 				*(int16_t *)dp = (int16_t)clr[(fb >> 31) & 1];
    171      1.3       ad 				fb <<= 1;
    172      1.3       ad 				dp += 2;
    173      1.3       ad 			}
    174      1.7       pk 		}
    175      1.3       ad 	}
    176      1.7       pk 
    177      1.3       ad 	/* Do underline */
    178      1.5       ad 	if ((attr & 1) != 0) {
    179      1.7       pk 		int16_t c = (int16_t)clr[1];
    180      1.3       ad 		rp -= ri->ri_stride << 1;
    181      1.3       ad 
    182      1.3       ad 		while (width--) {
    183      1.7       pk 			*(int16_t *)rp = c;
    184      1.3       ad 			rp += 2;
    185      1.1       ad 		}
    186      1.7       pk 	}
    187      1.1       ad }
    188      1.1       ad 
    189      1.5       ad #ifndef RASOPS_SMALL
    190      1.1       ad /*
    191      1.1       ad  * Recompute the (2x2)x1 blitting stamp.
    192      1.1       ad  */
    193      1.1       ad static void
    194      1.1       ad rasops15_makestamp(ri, attr)
    195      1.1       ad 	struct rasops_info *ri;
    196      1.1       ad 	long attr;
    197      1.1       ad {
    198      1.1       ad 	int32_t fg, bg;
    199      1.1       ad 	int i;
    200      1.7       pk 
    201      1.7       pk 	fg = ri->ri_devcmap[((u_int)attr >> 24) & 0xf] & 0xffff;
    202      1.7       pk 	bg = ri->ri_devcmap[((u_int)attr >> 16) & 0xf] & 0xffff;
    203      1.1       ad 	stamp_attr = attr;
    204      1.7       pk 
    205      1.3       ad 	for (i = 0; i < 32; i += 2) {
    206      1.1       ad #if BYTE_ORDER == LITTLE_ENDIAN
    207      1.3       ad 		stamp[i] = (i & 16 ? fg : bg);
    208      1.3       ad 		stamp[i] |= ((i & 8 ? fg : bg) << 16);
    209      1.3       ad 		stamp[i + 1] = (i & 4 ? fg : bg);
    210      1.3       ad 		stamp[i + 1] |= ((i & 2 ? fg : bg) << 16);
    211      1.1       ad #else
    212      1.3       ad 		stamp[i] = (i & 2 ? fg : bg);
    213      1.3       ad 		stamp[i] |= ((i & 4 ? fg : bg) << 16);
    214      1.3       ad 		stamp[i + 1] = (i & 8 ? fg : bg);
    215      1.3       ad 		stamp[i + 1] |= ((i & 16 ? fg : bg) << 16);
    216      1.1       ad #endif
    217      1.1       ad 	}
    218      1.1       ad }
    219      1.1       ad 
    220      1.1       ad /*
    221      1.1       ad  * Paint a single character. This is for 8-pixel wide fonts.
    222      1.1       ad  */
    223      1.1       ad static void
    224      1.1       ad rasops15_putchar8(cookie, row, col, uc, attr)
    225      1.1       ad 	void *cookie;
    226      1.1       ad 	int row, col;
    227      1.1       ad 	u_int uc;
    228      1.1       ad 	long attr;
    229      1.1       ad {
    230      1.1       ad 	struct rasops_info *ri;
    231      1.1       ad 	int height, so, fs;
    232      1.1       ad 	int32_t *rp;
    233      1.1       ad 	u_char *fr;
    234      1.7       pk 
    235      1.1       ad 	/* Can't risk remaking the stamp if it's already in use */
    236      1.1       ad 	if (stamp_mutex++) {
    237      1.1       ad 		stamp_mutex--;
    238      1.1       ad 		rasops15_putchar(cookie, row, col, uc, attr);
    239      1.1       ad 		return;
    240      1.1       ad 	}
    241      1.1       ad 
    242      1.1       ad 	ri = (struct rasops_info *)cookie;
    243      1.1       ad 
    244      1.7       pk #ifdef RASOPS_CLIPPING
    245      1.1       ad 	if ((unsigned)row >= (unsigned)ri->ri_rows) {
    246      1.1       ad 		stamp_mutex--;
    247      1.1       ad 		return;
    248      1.1       ad 	}
    249      1.1       ad 
    250      1.1       ad 	if ((unsigned)col >= (unsigned)ri->ri_cols) {
    251      1.1       ad 		stamp_mutex--;
    252      1.1       ad 		return;
    253      1.1       ad 	}
    254      1.1       ad #endif
    255      1.1       ad 
    256      1.1       ad 	/* Recompute stamp? */
    257      1.1       ad 	if (attr != stamp_attr)
    258      1.1       ad 		rasops15_makestamp(ri, attr);
    259      1.7       pk 
    260      1.1       ad 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
    261      1.1       ad 	height = ri->ri_font->fontheight;
    262      1.7       pk 
    263      1.1       ad 	if (uc == (u_int)-1) {
    264      1.7       pk 		int32_t c = stamp[0];
    265      1.1       ad 		while (height--) {
    266      1.7       pk 			rp[0] = rp[1] = rp[2] = rp[3] = c;
    267      1.1       ad 			DELTA(rp, ri->ri_stride, int32_t *);
    268      1.7       pk 		}
    269      1.1       ad 	} else {
    270      1.1       ad 		uc -= ri->ri_font->firstchar;
    271      1.1       ad 		fr = (u_char *)ri->ri_font->data + uc*ri->ri_fontscale;
    272      1.1       ad 		fs = ri->ri_font->stride;
    273      1.7       pk 
    274      1.1       ad 		while (height--) {
    275      1.1       ad 			so = STAMP_SHIFT(fr[0], 1) & STAMP_MASK;
    276      1.1       ad 			rp[0] = STAMP_READ(so);
    277      1.1       ad 			rp[1] = STAMP_READ(so + 4);
    278      1.7       pk 
    279      1.1       ad 			so = STAMP_SHIFT(fr[0], 0) & STAMP_MASK;
    280      1.1       ad 			rp[2] = STAMP_READ(so);
    281      1.1       ad 			rp[3] = STAMP_READ(so + 4);
    282      1.1       ad 
    283      1.1       ad 			fr += fs;
    284      1.7       pk 			DELTA(rp, ri->ri_stride, int32_t *);
    285      1.1       ad 		}
    286      1.7       pk 	}
    287      1.3       ad 
    288      1.3       ad 	/* Do underline */
    289      1.5       ad 	if ((attr & 1) != 0) {
    290      1.7       pk 		int32_t c = STAMP_READ(28);
    291      1.7       pk 
    292      1.3       ad 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    293      1.7       pk 		rp[0] = rp[1] = rp[2] = rp[3] = c;
    294      1.7       pk 	}
    295      1.7       pk 
    296      1.1       ad 	stamp_mutex--;
    297      1.1       ad }
    298      1.1       ad 
    299      1.1       ad /*
    300      1.1       ad  * Paint a single character. This is for 12-pixel wide fonts.
    301      1.1       ad  */
    302      1.1       ad static void
    303      1.1       ad rasops15_putchar12(cookie, row, col, uc, attr)
    304      1.1       ad 	void *cookie;
    305      1.1       ad 	int row, col;
    306      1.1       ad 	u_int uc;
    307      1.1       ad 	long attr;
    308      1.1       ad {
    309      1.1       ad 	struct rasops_info *ri;
    310      1.1       ad 	int height, so, fs;
    311      1.1       ad 	int32_t *rp;
    312      1.1       ad 	u_char *fr;
    313      1.7       pk 
    314      1.1       ad 	/* Can't risk remaking the stamp if it's already in use */
    315      1.1       ad 	if (stamp_mutex++) {
    316      1.1       ad 		stamp_mutex--;
    317      1.1       ad 		rasops15_putchar(cookie, row, col, uc, attr);
    318      1.1       ad 		return;
    319      1.1       ad 	}
    320      1.1       ad 
    321      1.1       ad 	ri = (struct rasops_info *)cookie;
    322      1.1       ad 
    323      1.7       pk #ifdef RASOPS_CLIPPING
    324      1.1       ad 	if ((unsigned)row >= (unsigned)ri->ri_rows) {
    325      1.1       ad 		stamp_mutex--;
    326      1.1       ad 		return;
    327      1.1       ad 	}
    328      1.1       ad 
    329      1.1       ad 	if ((unsigned)col >= (unsigned)ri->ri_cols) {
    330      1.1       ad 		stamp_mutex--;
    331      1.1       ad 		return;
    332      1.1       ad 	}
    333      1.1       ad #endif
    334      1.1       ad 
    335      1.1       ad 	/* Recompute stamp? */
    336      1.1       ad 	if (attr != stamp_attr)
    337      1.1       ad 		rasops15_makestamp(ri, attr);
    338      1.7       pk 
    339      1.1       ad 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
    340      1.1       ad 	height = ri->ri_font->fontheight;
    341      1.1       ad 
    342      1.1       ad 	if (uc == (u_int)-1) {
    343      1.7       pk 		int32_t c = stamp[0];
    344      1.1       ad 		while (height--) {
    345      1.7       pk 			rp[0] = rp[1] = rp[2] = rp[3] = rp[4] = rp[5] = c;
    346      1.7       pk 			DELTA(rp, ri->ri_stride, int32_t *);
    347      1.7       pk 		}
    348      1.1       ad 	} else {
    349      1.1       ad 		uc -= ri->ri_font->firstchar;
    350      1.1       ad 		fr = (u_char *)ri->ri_font->data + uc*ri->ri_fontscale;
    351      1.1       ad 		fs = ri->ri_font->stride;
    352      1.7       pk 
    353      1.1       ad 		while (height--) {
    354      1.1       ad 			so = STAMP_SHIFT(fr[0], 1) & STAMP_MASK;
    355      1.1       ad 			rp[0] = STAMP_READ(so);
    356      1.1       ad 			rp[1] = STAMP_READ(so + 4);
    357      1.7       pk 
    358      1.1       ad 			so = STAMP_SHIFT(fr[0], 0) & STAMP_MASK;
    359      1.1       ad 			rp[2] = STAMP_READ(so);
    360      1.1       ad 			rp[3] = STAMP_READ(so + 4);
    361      1.1       ad 
    362      1.1       ad 			so = STAMP_SHIFT(fr[1], 1) & STAMP_MASK;
    363      1.1       ad 			rp[4] = STAMP_READ(so);
    364      1.1       ad 			rp[5] = STAMP_READ(so + 4);
    365      1.1       ad 
    366      1.1       ad 			fr += fs;
    367      1.7       pk 			DELTA(rp, ri->ri_stride, int32_t *);
    368      1.1       ad 		}
    369      1.7       pk 	}
    370      1.3       ad 
    371      1.3       ad 	/* Do underline */
    372      1.3       ad 	if (attr & 1) {
    373      1.7       pk 		int32_t c = STAMP_READ(28);
    374      1.7       pk 
    375      1.3       ad 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    376      1.7       pk 		rp[0] = rp[1] = rp[2] = rp[3] = rp[4] = rp[5] = c;
    377      1.7       pk 	}
    378      1.7       pk 
    379      1.1       ad 	stamp_mutex--;
    380      1.1       ad }
    381      1.1       ad 
    382      1.1       ad /*
    383      1.1       ad  * Paint a single character. This is for 16-pixel wide fonts.
    384      1.1       ad  */
    385      1.1       ad static void
    386      1.1       ad rasops15_putchar16(cookie, row, col, uc, attr)
    387      1.1       ad 	void *cookie;
    388      1.1       ad 	int row, col;
    389      1.1       ad 	u_int uc;
    390      1.1       ad 	long attr;
    391      1.1       ad {
    392      1.1       ad 	struct rasops_info *ri;
    393      1.1       ad 	int height, so, fs;
    394      1.1       ad 	int32_t *rp;
    395      1.1       ad 	u_char *fr;
    396      1.7       pk 
    397      1.1       ad 	/* Can't risk remaking the stamp if it's already in use */
    398      1.1       ad 	if (stamp_mutex++) {
    399      1.1       ad 		stamp_mutex--;
    400      1.1       ad 		rasops15_putchar(cookie, row, col, uc, attr);
    401      1.1       ad 		return;
    402      1.1       ad 	}
    403      1.1       ad 
    404      1.1       ad 	ri = (struct rasops_info *)cookie;
    405      1.1       ad 
    406      1.7       pk #ifdef RASOPS_CLIPPING
    407      1.1       ad 	if ((unsigned)row >= (unsigned)ri->ri_rows) {
    408      1.1       ad 		stamp_mutex--;
    409      1.1       ad 		return;
    410      1.1       ad 	}
    411      1.1       ad 
    412      1.1       ad 	if ((unsigned)col >= (unsigned)ri->ri_cols) {
    413      1.1       ad 		stamp_mutex--;
    414      1.1       ad 		return;
    415      1.1       ad 	}
    416      1.1       ad #endif
    417      1.1       ad 
    418      1.1       ad 	/* Recompute stamp? */
    419      1.1       ad 	if (attr != stamp_attr)
    420      1.1       ad 		rasops15_makestamp(ri, attr);
    421      1.7       pk 
    422      1.1       ad 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
    423      1.1       ad 	height = ri->ri_font->fontheight;
    424      1.7       pk 
    425      1.1       ad 	if (uc == (u_int)-1) {
    426      1.7       pk 		int32_t c = stamp[0];
    427      1.1       ad 		while (height--) {
    428      1.7       pk 			rp[0] = rp[1] = rp[2] = rp[3] =
    429      1.7       pk 			rp[4] = rp[5] = rp[6] = rp[7] = c;
    430      1.7       pk 			DELTA(rp, ri->ri_stride, int32_t *);
    431      1.7       pk 		}
    432      1.1       ad 	} else {
    433      1.1       ad 		uc -= ri->ri_font->firstchar;
    434      1.1       ad 		fr = (u_char *)ri->ri_font->data + uc*ri->ri_fontscale;
    435      1.1       ad 		fs = ri->ri_font->stride;
    436      1.7       pk 
    437      1.1       ad 		while (height--) {
    438      1.1       ad 			so = STAMP_SHIFT(fr[0], 1) & STAMP_MASK;
    439      1.1       ad 			rp[0] = STAMP_READ(so);
    440      1.1       ad 			rp[1] = STAMP_READ(so + 4);
    441      1.7       pk 
    442      1.1       ad 			so = STAMP_SHIFT(fr[0], 0) & STAMP_MASK;
    443      1.1       ad 			rp[2] = STAMP_READ(so);
    444      1.1       ad 			rp[3] = STAMP_READ(so + 4);
    445      1.1       ad 
    446      1.1       ad 			so = STAMP_SHIFT(fr[1], 1) & STAMP_MASK;
    447      1.1       ad 			rp[4] = STAMP_READ(so);
    448      1.1       ad 			rp[5] = STAMP_READ(so + 4);
    449      1.7       pk 
    450      1.1       ad 			so = STAMP_SHIFT(fr[1], 0) & STAMP_MASK;
    451      1.1       ad 			rp[6] = STAMP_READ(so);
    452      1.1       ad 			rp[7] = STAMP_READ(so + 4);
    453      1.1       ad 
    454      1.7       pk 			DELTA(rp, ri->ri_stride, int32_t *);
    455      1.1       ad 			fr += fs;
    456      1.1       ad 		}
    457      1.7       pk 	}
    458      1.3       ad 
    459      1.3       ad 	/* Do underline */
    460      1.3       ad 	if (attr & 1) {
    461      1.7       pk 		int32_t c = STAMP_READ(28);
    462      1.7       pk 
    463      1.3       ad 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    464      1.7       pk 		rp[0] = rp[1] = rp[2] = rp[3] =
    465      1.7       pk 		rp[4] = rp[5] = rp[6] = rp[7] = c;
    466      1.7       pk 	}
    467      1.7       pk 
    468      1.1       ad 	stamp_mutex--;
    469      1.1       ad }
    470      1.5       ad #endif	/* !RASOPS_SMALL */
    471