diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-01-09 22:23:25 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-01-09 22:23:25 +0100 |
commit | 15590e39c6be92d8a9ecb2f00b015dbb9a3dc0b0 (patch) | |
tree | 1ecc8859409aae2446f7cb23ca8ad672878846a3 /sys/src/cmd/aux/vga/data.c | |
parent | cf76346b37ddbd54b8d1fe5580ab813a8165392b (diff) |
igfx: implement hardware cursor
this can even be used with the vesa driver, just
enable the cursor after mode switch like:
echo hwgc igfxhwgc >/dev/vgactl
Diffstat (limited to 'sys/src/cmd/aux/vga/data.c')
-rw-r--r-- | sys/src/cmd/aux/vga/data.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/cmd/aux/vga/data.c b/sys/src/cmd/aux/vga/data.c index 306a5c010..f55ac5efd 100644 --- a/sys/src/cmd/aux/vga/data.c +++ b/sys/src/cmd/aux/vga/data.c @@ -41,6 +41,8 @@ Ctlr* ctlrs[] = { &ics2494, /* clock */ &ics2494a, /* clock */ &ics534x, /* gendac */ + &igfx, /* ctlr */ + &igfxhwgc, /* hwgc */ &mach32, /* ctlr */ &mach64, /* ctlr */ &mach64xx, /* ctlr */ @@ -87,7 +89,6 @@ Ctlr* ctlrs[] = { &w30c516, /* ctlr */ &mga4xx, &mga4xxhwgc, - &igfx, /* ctlr */ 0, }; |