diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2021-03-13 14:02:03 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2021-03-13 14:02:03 +0000 |
commit | 57fde92962452e88ef72372bf488a65131832ab8 (patch) | |
tree | 67e42b974cc41fee0f0a863006346677d24464c9 | |
parent | 93029da8e33a681e1928cda8316ed495a7628fdc (diff) |
Advertise 30-bit color support.
ok matthieu@, jsg@
-rw-r--r-- | sys/dev/fdt/simplefb.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/fdt/simplefb.c b/sys/dev/fdt/simplefb.c index 13708ea3f32..e1d1cf2a1f5 100644 --- a/sys/dev/fdt/simplefb.c +++ b/sys/dev/fdt/simplefb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: simplefb.c,v 1.12 2021/03/09 19:02:44 kettenis Exp $ */ +/* $OpenBSD: simplefb.c,v 1.13 2021/03/13 14:02:02 kettenis Exp $ */ /* * Copyright (c) 2016 Mark Kettenis * @@ -264,7 +264,10 @@ simplefb_wsioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p) case WSDISPLAYIO_GETSUPPORTEDDEPTH: switch (ri->ri_depth) { case 32: - *(u_int *)data = WSDISPLAYIO_DEPTH_24_32; + if (ri->ri_rnum == 10) + *(u_int *)data = WSDISPLAYIO_DEPTH_30; + else + *(u_int *)data = WSDISPLAYIO_DEPTH_24_32; break; case 24: *(u_int *)data = WSDISPLAYIO_DEPTH_24_24; |