diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-05-25 14:12:05 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-05-25 14:12:05 +0000 |
commit | 224691bb5a0444892f424849d6250cc62c3d3a89 (patch) | |
tree | 22c9bcf5deb42955813882bf8dbb6aa0cb7c2b12 /sys/arch | |
parent | cd0267c73e7950b776f1d66c84d147d319fd139e (diff) |
add wsmoused support to efifb
from John Carmack
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/efifb.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/efifb.c b/sys/arch/amd64/amd64/efifb.c index 21458329ce7..c7e2eba3790 100644 --- a/sys/arch/amd64/amd64/efifb.c +++ b/sys/arch/amd64/amd64/efifb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: efifb.c,v 1.29 2020/05/25 09:55:47 jsg Exp $ */ +/* $OpenBSD: efifb.c,v 1.30 2020/05/25 14:12:04 jsg Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net> @@ -100,6 +100,7 @@ int efifb_alloc_screen(void *, const struct wsscreen_descr *, void **, void efifb_free_screen(void *, void *); int efifb_show_screen(void *, void *, int, void (*cb) (void *, int, int), void *); +int efifb_getchar(void *, int, int, struct wsdisplay_charcell *); int efifb_list_font(void *, struct wsdisplay_font *); int efifb_load_font(void *, void *, struct wsdisplay_font *); void efifb_scrollback(void *, void *, int lines); @@ -133,6 +134,7 @@ struct wsdisplay_accessops efifb_accessops = { .alloc_screen = efifb_alloc_screen, .free_screen = efifb_free_screen, .show_screen = efifb_show_screen, + .getchar = efifb_getchar, .load_font = efifb_load_font, .list_font = efifb_list_font, .scrollback = efifb_scrollback, @@ -374,6 +376,15 @@ efifb_show_screen(void *v, void *cookie, int waitok, } int +efifb_getchar(void *v, int row, int col, struct wsdisplay_charcell *cell) +{ + struct efifb_softc *sc = v; + struct rasops_info *ri = &sc->sc_fb->rinfo; + + return rasops_getchar(ri, row, col, cell); +} + +int efifb_load_font(void *v, void *cookie, struct wsdisplay_font *font) { struct efifb_softc *sc = v; |