diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-25 19:01:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-07-25 19:01:20 +0000 |
commit | c7866a5b25f02593194ade0e26348772eb9dd911 (patch) | |
tree | ced7950f277ea613c723558e1f990f2b76b33c36 /sys/dev/wscons | |
parent | df4cfe998081e84c31e7e2e2849ec7c18bd52e77 (diff) |
Rename the WSDISPLAY_TYPE_SUNFFB display type into a more generic name,
..._SUN24, since this only means 24 bit framebuffers with BGR encoding.
Also add a WSDISPLAY_TYPE_SUNBW for Sun monochrome framebuffers, to be used
by Xwsfb shortly.
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/wsconsio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index c25d795ef9b..d652ac82c8b 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.21 2002/06/11 22:56:48 jason Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.22 2002/07/25 19:01:19 miod Exp $ */ /* $NetBSD: wsconsio.h,v 1.31.2.1 2000/07/07 09:49:17 hannken Exp $ */ /* @@ -252,7 +252,8 @@ struct wsmouse_calibcoords { #define WSDISPLAY_TYPE_SB_P9100 22 /* Tadpole SPARCbook P9100 */ #define WSDISPLAY_TYPE_EGA 23 /* (generic) EGA */ #define WSDISPLAY_TYPE_DCPVR 24 /* Dreamcast PowerVR */ -#define WSDISPLAY_TYPE_SUNFFB 25 /* Sun UPA FFB */ +#define WSDISPLAY_TYPE_SUN24 25 /* Sun 24 bit framebuffers */ +#define WSDISPLAY_TYPE_SUNBW 26 /* Sun black and white fb */ /* Basic display information. Not applicable to all display types. */ struct wsdisplay_fbinfo { |