Module Name: src
Committed By: macallan
Date: Wed Mar 6 08:19:44 UTC 2024
Modified Files:
src/sys/arch/hppa/dev: gftfb.c
Log Message:
if the framebuffer is wider than the visible area, use the full width for the
glyphcache
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/hppa/dev/gftfb.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hppa/dev/gftfb.c
diff -u src/sys/arch/hppa/dev/gftfb.c:1.8 src/sys/arch/hppa/dev/gftfb.c:1.9
--- src/sys/arch/hppa/dev/gftfb.c:1.8 Wed Feb 28 14:12:12 2024
+++ src/sys/arch/hppa/dev/gftfb.c Wed Mar 6 08:19:44 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: gftfb.c,v 1.8 2024/02/28 14:12:12 macallan Exp $ */
+/* $NetBSD: gftfb.c,v 1.9 2024/03/06 08:19:44 macallan Exp $ */
/* $OpenBSD: sti_pci.c,v 1.7 2009/02/06 22:51:04 miod Exp $ */
@@ -294,7 +294,7 @@ gftfb_attach(device_t parent, device_t s
glyphcache_init(&sc->sc_gc, sc->sc_height + 5,
sc->sc_scr.fbheight - sc->sc_height - 5,
- sc->sc_width,
+ sc->sc_scr.fbwidth,
ri->ri_font->fontwidth,
ri->ri_font->fontheight,
defattr);
@@ -320,7 +320,7 @@ gftfb_attach(device_t parent, device_t s
glyphcache_init(&sc->sc_gc, sc->sc_height + 5,
sc->sc_scr.fbheight - sc->sc_height - 5,
- sc->sc_width,
+ sc->sc_scr.fbwidth,
ri->ri_font->fontwidth,
ri->ri_font->fontheight,
defattr);