use rasops_init(0, 0)
This commit is contained in:
parent
741daaf46f
commit
ee402ab400
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: ct65550.c,v 1.2 2011/03/23 04:02:43 macallan Exp $ */
|
||||
/* $NetBSD: ct65550.c,v 1.3 2012/01/11 16:12:38 macallan Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Michael Lorenz
|
||||
@ -30,7 +30,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ct65550.c,v 1.2 2011/03/23 04:02:43 macallan Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ct65550.c,v 1.3 2012/01/11 16:12:38 macallan Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -821,7 +821,7 @@ chipsfb_init_screen(void *cookie, struct vcons_screen *scr,
|
||||
ri->ri_flg |= RI_CLEAR;
|
||||
}
|
||||
|
||||
rasops_init(ri, sc->height/8, sc->width/8);
|
||||
rasops_init(ri, 0, 0);
|
||||
ri->ri_caps = WSSCREEN_WSCOLORS;
|
||||
|
||||
rasops_reconfig(ri, sc->height / ri->ri_font->fontheight,
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: igsfb.c,v 1.50 2011/07/26 08:59:37 mrg Exp $ */
|
||||
/* $NetBSD: igsfb.c,v 1.51 2012/01/11 16:12:38 macallan Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002, 2003 Valeriy E. Ushakov
|
||||
@ -31,7 +31,7 @@
|
||||
* Integraphics Systems IGA 168x and CyberPro series.
|
||||
*/
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: igsfb.c,v 1.50 2011/07/26 08:59:37 mrg Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: igsfb.c,v 1.51 2012/01/11 16:12:38 macallan Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -455,7 +455,7 @@ igsfb_init_wsdisplay(void *cookie, struct vcons_screen *scr, int existing,
|
||||
|
||||
|
||||
/* XXX: TODO: compute term size based on font dimensions? */
|
||||
rasops_init(ri, 34, 80);
|
||||
rasops_init(ri, 0, 0);
|
||||
rasops_reconfig(ri, ri->ri_height / ri->ri_font->fontheight,
|
||||
ri->ri_width / ri->ri_font->fontwidth);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $NetBSD: genfb.c,v 1.45 2012/01/04 20:18:28 macallan Exp $ */
|
||||
/* $NetBSD: genfb.c,v 1.46 2012/01/11 16:13:11 macallan Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2007 Michael Lorenz
|
||||
@ -27,7 +27,7 @@
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.45 2012/01/04 20:18:28 macallan Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: genfb.c,v 1.46 2012/01/11 16:13:11 macallan Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -514,7 +514,7 @@ genfb_init_screen(void *cookie, struct vcons_screen *scr,
|
||||
ri->ri_flg |= RI_ENABLE_ALPHA | RI_8BIT_IS_RGB;
|
||||
|
||||
|
||||
rasops_init(ri, sc->sc_height / 8, sc->sc_width / 8);
|
||||
rasops_init(ri, 0, 0);
|
||||
ri->ri_caps = WSSCREEN_WSCOLORS;
|
||||
|
||||
rasops_reconfig(ri, sc->sc_height / ri->ri_font->fontheight,
|
||||
|
Loading…
Reference in New Issue
Block a user