diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-05-24 11:11:04 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-05-24 11:11:04 +0000 |
commit | 70a212ad360e1fbf483aa5ecef8644d058827927 (patch) | |
tree | 7c96ec2d83277424c52943e40ec23d1a002f0ca4 | |
parent | fd911f312addb5e29dd25b50775ad7b8a8c80253 (diff) |
Mention broken cursor drawing.
-rw-r--r-- | sys/dev/usb/udl.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c index f88ff537ca6..ff62eabf5d3 100644 --- a/sys/dev/usb/udl.c +++ b/sys/dev/usb/udl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: udl.c,v 1.10 2009/05/24 11:05:16 mglocker Exp $ */ +/* $OpenBSD: udl.c,v 1.11 2009/05/24 11:11:03 mglocker Exp $ */ /* * Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org> @@ -616,6 +616,14 @@ udl_do_cursor(struct rasops_info *ri) struct udl_softc *sc = ri->ri_hw; uint32_t x, y; + /* + * XXX + * We can't draw a transparent cursor yet because the chip + * doesn't offer an XOR command nor a read command for screen + * regions. Maybe this gets fixed once when wscons(4) is able + * to remember the on-screen characters. + */ + DPRINTF(2, "%s: %s: ccol=%d, crow=%d\n", DN(sc), FUNC, ri->ri_ccol, ri->ri_crow); |