Home | History | Annotate | Line # | Download | only in rasops
rasops32.c revision 1.19.8.2
      1  1.19.8.2      yamt /*	 $NetBSD: rasops32.c,v 1.19.8.2 2012/10/30 17:22:00 yamt 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.8        ad  * 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.1        ad  *
     19       1.4        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.4        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.4        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.4        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.4        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.4        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.4        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.4        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.4        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.4        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.4        ad  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1        ad  */
     31       1.2        ad 
     32      1.10     lukem #include <sys/cdefs.h>
     33  1.19.8.2      yamt __KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.19.8.2 2012/10/30 17:22:00 yamt Exp $");
     34      1.10     lukem 
     35       1.1        ad #include "opt_rasops.h"
     36       1.1        ad 
     37       1.1        ad #include <sys/param.h>
     38       1.1        ad #include <sys/systm.h>
     39       1.1        ad #include <sys/time.h>
     40       1.1        ad 
     41       1.1        ad #include <dev/wscons/wsdisplayvar.h>
     42       1.1        ad #include <dev/wscons/wsconsio.h>
     43       1.1        ad #include <dev/rasops/rasops.h>
     44       1.1        ad 
     45      1.13     perry static void 	rasops32_putchar(void *, int, int, u_int, long attr);
     46  1.19.8.1      yamt static void 	rasops32_putchar_aa(void *, int, int, u_int, long attr);
     47       1.3        ad 
     48       1.1        ad /*
     49       1.9       wiz  * Initialize a 'rasops_info' descriptor for this depth.
     50       1.1        ad  */
     51       1.1        ad void
     52      1.17       dsl rasops32_init(struct rasops_info *ri)
     53       1.1        ad {
     54       1.1        ad 
     55       1.3        ad 	if (ri->ri_rnum == 0) {
     56       1.3        ad 		ri->ri_rnum = 8;
     57       1.3        ad 		ri->ri_rpos = 0;
     58       1.3        ad 		ri->ri_gnum = 8;
     59       1.3        ad 		ri->ri_gpos = 8;
     60       1.3        ad 		ri->ri_bnum = 8;
     61       1.3        ad 		ri->ri_bpos = 16;
     62       1.1        ad 	}
     63       1.7        pk 
     64  1.19.8.1      yamt 	if (FONT_IS_ALPHA(ri->ri_font)) {
     65  1.19.8.1      yamt 		ri->ri_ops.putchar = rasops32_putchar_aa;
     66  1.19.8.1      yamt 	} else
     67  1.19.8.1      yamt 		ri->ri_ops.putchar = rasops32_putchar;
     68       1.1        ad }
     69       1.1        ad 
     70       1.1        ad /*
     71       1.1        ad  * Paint a single character.
     72       1.1        ad  */
     73  1.19.8.1      yamt 
     74       1.1        ad static void
     75      1.18       dsl rasops32_putchar(void *cookie, int row, int col, u_int uc, long attr)
     76       1.1        ad {
     77       1.5        ad 	int width, height, cnt, fs, fb, clr[2];
     78      1.19  macallan 	struct rasops_info *ri = (struct rasops_info *)cookie;
     79      1.19  macallan 	struct wsdisplay_font *font = PICK_FONT(ri, uc);
     80      1.15  jmcneill 	int32_t *dp, *rp, *hp, *hrp;
     81       1.1        ad 	u_char *fr;
     82       1.7        pk 
     83      1.15  jmcneill 	hp = hrp = NULL;
     84       1.1        ad 
     85       1.7        pk #ifdef RASOPS_CLIPPING
     86       1.7        pk 	/* Catches 'row < 0' case too */
     87       1.1        ad 	if ((unsigned)row >= (unsigned)ri->ri_rows)
     88       1.1        ad 		return;
     89       1.1        ad 
     90       1.1        ad 	if ((unsigned)col >= (unsigned)ri->ri_cols)
     91       1.1        ad 		return;
     92       1.1        ad #endif
     93      1.12    petrov 
     94      1.12    petrov 	/* check if character fits into font limits */
     95  1.19.8.1      yamt 	if (!CHAR_IN_FONT(uc, font))
     96  1.19.8.1      yamt 		return;
     97       1.7        pk 
     98       1.1        ad 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
     99      1.15  jmcneill 	if (ri->ri_hwbits)
    100      1.15  jmcneill 		hrp = (int32_t *)(ri->ri_hwbits + row*ri->ri_yscale +
    101      1.15  jmcneill 		    col*ri->ri_xscale);
    102       1.1        ad 
    103      1.19  macallan 	height = font->fontheight;
    104      1.19  macallan 	width = font->fontwidth;
    105       1.3        ad 
    106       1.7        pk 	clr[0] = ri->ri_devcmap[(attr >> 16) & 0xf];
    107       1.7        pk 	clr[1] = ri->ri_devcmap[(attr >> 24) & 0xf];
    108       1.7        pk 
    109       1.1        ad 	if (uc == ' ') {
    110       1.1        ad 		while (height--) {
    111       1.1        ad 			dp = rp;
    112       1.1        ad 			DELTA(rp, ri->ri_stride, int32_t *);
    113      1.15  jmcneill 			if (ri->ri_hwbits) {
    114      1.15  jmcneill 				hp = hrp;
    115      1.15  jmcneill 				DELTA(hrp, ri->ri_stride, int32_t *);
    116      1.15  jmcneill 			}
    117       1.1        ad 
    118      1.15  jmcneill 			for (cnt = width; cnt; cnt--) {
    119       1.1        ad 				*dp++ = clr[0];
    120      1.15  jmcneill 				if (ri->ri_hwbits)
    121      1.15  jmcneill 					*hp++ = clr[0];
    122      1.15  jmcneill 			}
    123       1.1        ad 		}
    124       1.1        ad 	} else {
    125  1.19.8.1      yamt 		fr = WSFONT_GLYPH(uc, font);
    126      1.19  macallan 		fs = font->stride;
    127       1.1        ad 
    128       1.1        ad 		while (height--) {
    129       1.1        ad 			dp = rp;
    130       1.7        pk 			fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) |
    131       1.6        ad 			    (fr[0] << 24);
    132       1.1        ad 			fr += fs;
    133       1.1        ad 			DELTA(rp, ri->ri_stride, int32_t *);
    134      1.15  jmcneill 			if (ri->ri_hwbits) {
    135      1.15  jmcneill 				hp = hrp;
    136      1.15  jmcneill 				DELTA(hrp, ri->ri_stride, int32_t *);
    137      1.15  jmcneill 			}
    138       1.7        pk 
    139       1.1        ad 			for (cnt = width; cnt; cnt--) {
    140       1.1        ad 				*dp++ = clr[(fb >> 31) & 1];
    141      1.15  jmcneill 				if (ri->ri_hwbits)
    142      1.15  jmcneill 					*hp++ = clr[(fb >> 31) & 1];
    143       1.1        ad 				fb <<= 1;
    144       1.1        ad 			}
    145       1.1        ad 		}
    146       1.7        pk 	}
    147       1.1        ad 
    148       1.1        ad 	/* Do underline */
    149       1.5        ad 	if ((attr & 1) != 0) {
    150       1.1        ad 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    151      1.15  jmcneill 		if (ri->ri_hwbits)
    152      1.15  jmcneill 			DELTA(hrp, -(ri->ri_stride << 1), int32_t *);
    153       1.1        ad 
    154      1.15  jmcneill 		while (width--) {
    155       1.1        ad 			*rp++ = clr[1];
    156      1.15  jmcneill 			if (ri->ri_hwbits)
    157      1.15  jmcneill 				*hrp++ = clr[1];
    158      1.15  jmcneill 		}
    159       1.7        pk 	}
    160       1.1        ad }
    161  1.19.8.1      yamt 
    162  1.19.8.1      yamt static void
    163  1.19.8.1      yamt rasops32_putchar_aa(void *cookie, int row, int col, u_int uc, long attr)
    164  1.19.8.1      yamt {
    165  1.19.8.1      yamt 	int width, height, cnt, fs, clr[2];
    166  1.19.8.1      yamt 	struct rasops_info *ri = (struct rasops_info *)cookie;
    167  1.19.8.1      yamt 	struct wsdisplay_font *font = PICK_FONT(ri, uc);
    168  1.19.8.1      yamt 	int32_t *dp, *rp, *hp, *hrp;
    169  1.19.8.2      yamt 	uint8_t *rrp;
    170  1.19.8.1      yamt 	u_char *fr;
    171  1.19.8.1      yamt 	int x, y, r, g, b, aval;
    172  1.19.8.1      yamt 	int r1, g1, b1, r0, g0, b0;
    173  1.19.8.1      yamt 
    174  1.19.8.1      yamt 	hp = hrp = NULL;
    175  1.19.8.1      yamt 
    176  1.19.8.1      yamt #ifdef RASOPS_CLIPPING
    177  1.19.8.1      yamt 	/* Catches 'row < 0' case too */
    178  1.19.8.1      yamt 	if ((unsigned)row >= (unsigned)ri->ri_rows)
    179  1.19.8.1      yamt 		return;
    180  1.19.8.1      yamt 
    181  1.19.8.1      yamt 	if ((unsigned)col >= (unsigned)ri->ri_cols)
    182  1.19.8.1      yamt 		return;
    183  1.19.8.1      yamt #endif
    184  1.19.8.1      yamt 
    185  1.19.8.1      yamt 	/* check if character fits into font limits */
    186  1.19.8.1      yamt 	if (!CHAR_IN_FONT(uc, font))
    187  1.19.8.1      yamt 		return;
    188  1.19.8.1      yamt 
    189  1.19.8.2      yamt 	rrp = (ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
    190  1.19.8.2      yamt 	rp = (int32_t *)rrp;
    191  1.19.8.1      yamt 	if (ri->ri_hwbits)
    192  1.19.8.1      yamt 		hrp = (int32_t *)(ri->ri_hwbits + row*ri->ri_yscale +
    193  1.19.8.1      yamt 		    col*ri->ri_xscale);
    194  1.19.8.1      yamt 
    195  1.19.8.1      yamt 	height = font->fontheight;
    196  1.19.8.1      yamt 	width = font->fontwidth;
    197  1.19.8.1      yamt 
    198  1.19.8.1      yamt 	clr[0] = ri->ri_devcmap[(attr >> 16) & 0xf];
    199  1.19.8.1      yamt 	clr[1] = ri->ri_devcmap[(attr >> 24) & 0xf];
    200  1.19.8.1      yamt 
    201  1.19.8.1      yamt 	if (uc == ' ') {
    202  1.19.8.1      yamt 		while (height--) {
    203  1.19.8.1      yamt 			dp = rp;
    204  1.19.8.1      yamt 			DELTA(rp, ri->ri_stride, int32_t *);
    205  1.19.8.1      yamt 			if (ri->ri_hwbits) {
    206  1.19.8.1      yamt 				hp = hrp;
    207  1.19.8.1      yamt 				DELTA(hrp, ri->ri_stride, int32_t *);
    208  1.19.8.1      yamt 			}
    209  1.19.8.1      yamt 
    210  1.19.8.1      yamt 			for (cnt = width; cnt; cnt--) {
    211  1.19.8.1      yamt 				*dp++ = clr[0];
    212  1.19.8.1      yamt 				if (ri->ri_hwbits)
    213  1.19.8.1      yamt 					*hp++ = clr[0];
    214  1.19.8.1      yamt 			}
    215  1.19.8.1      yamt 		}
    216  1.19.8.1      yamt 	} else {
    217  1.19.8.1      yamt 		fr = WSFONT_GLYPH(uc, font);
    218  1.19.8.1      yamt 		fs = font->stride;
    219  1.19.8.1      yamt 
    220  1.19.8.1      yamt 		r0 = (clr[0] >> 16) & 0xff;
    221  1.19.8.1      yamt 		r1 = (clr[1] >> 16) & 0xff;
    222  1.19.8.1      yamt 		g0 = (clr[0] >> 8) & 0xff;
    223  1.19.8.1      yamt 		g1 = (clr[1] >> 8) & 0xff;
    224  1.19.8.1      yamt 		b0 =  clr[0] & 0xff;
    225  1.19.8.1      yamt 		b1 =  clr[1] & 0xff;
    226  1.19.8.1      yamt 
    227  1.19.8.1      yamt 		for (y = 0; y < height; y++) {
    228  1.19.8.2      yamt 			dp = (uint32_t *)(rrp + ri->ri_stride * y);
    229  1.19.8.1      yamt 			for (x = 0; x < width; x++) {
    230  1.19.8.1      yamt 				aval = *fr;
    231  1.19.8.1      yamt 				if (aval == 0) {
    232  1.19.8.1      yamt 					*dp = clr[0];
    233  1.19.8.1      yamt 				} else if (aval == 255) {
    234  1.19.8.1      yamt 					*dp = clr[1];
    235  1.19.8.1      yamt 				} else {
    236  1.19.8.1      yamt 					r = aval * r1 + (255 - aval) * r0;
    237  1.19.8.1      yamt 					g = aval * g1 + (255 - aval) * g0;
    238  1.19.8.1      yamt 					b = aval * b1 + (255 - aval) * b0;
    239  1.19.8.1      yamt 					*dp = (r & 0xff00) << 8 |
    240  1.19.8.1      yamt 					      (g & 0xff00) |
    241  1.19.8.1      yamt 					      (b & 0xff00) >> 8;
    242  1.19.8.1      yamt 				}
    243  1.19.8.1      yamt 				dp++;
    244  1.19.8.1      yamt 				fr++;
    245  1.19.8.1      yamt 			}
    246  1.19.8.1      yamt 		}
    247  1.19.8.1      yamt 	}
    248  1.19.8.1      yamt 
    249  1.19.8.1      yamt 	/* Do underline */
    250  1.19.8.1      yamt 	if ((attr & 1) != 0) {
    251  1.19.8.1      yamt 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    252  1.19.8.1      yamt 		if (ri->ri_hwbits)
    253  1.19.8.1      yamt 			DELTA(hrp, -(ri->ri_stride << 1), int32_t *);
    254  1.19.8.1      yamt 
    255  1.19.8.1      yamt 		while (width--) {
    256  1.19.8.1      yamt 			*rp++ = clr[1];
    257  1.19.8.1      yamt 			if (ri->ri_hwbits)
    258  1.19.8.1      yamt 				*hrp++ = clr[1];
    259  1.19.8.1      yamt 		}
    260  1.19.8.1      yamt 	}
    261  1.19.8.1      yamt }
    262