Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-04-01 Thread Nathan Whitehorn
On 03/29/14 15:35, Aleksandr Rybalko wrote: On Sat, 29 Mar 2014 09:18:03 -0700 Nathan Whitehorn wrote: On 03/28/14 15:04, Aleksandr Rybalko wrote: Author: ray Date: Fri Mar 28 22:04:27 2014 New Revision: 263885 URL: http://svnweb.freebsd.org/changeset/base/263885 Log: o Add new vd_driver

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-30 Thread Alexey Dokuchaev
On Sun, Mar 30, 2014 at 11:38:24PM +0300, Aleksandr Rybalko wrote: > > I've always wondered why FreeBSD *ever* had this ugly > > "look-we-can-make-it- like-in-wind0ze" mouse pointer on the console. > > I've been always building kernel with SC_ALT_MOUSE_IMAGE; I'm really > > hoping (if this nonsense

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-30 Thread Aleksandr Rybalko
On Sun, 30 Mar 2014 07:04:44 + Alexey Dokuchaev wrote: > On Sun, Mar 30, 2014 at 12:35:23AM +0200, Aleksandr Rybalko wrote: > > vt(4) have to use bitblt like method which is able to do masked > > write, since mouse cursor have to left visible characters under > > itself. But masked bitblt qui

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-30 Thread Alexey Dokuchaev
On Sun, Mar 30, 2014 at 12:35:23AM +0200, Aleksandr Rybalko wrote: > vt(4) have to use bitblt like method which is able to do masked write, > since mouse cursor have to left visible characters under itself. > But masked bitblt quite expensive due to read from framebuffer to apply > mask or due to V

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-29 Thread Nathan Whitehorn
On 03/29/14 15:35, Aleksandr Rybalko wrote: On Sat, 29 Mar 2014 09:18:03 -0700 Nathan Whitehorn wrote: On 03/28/14 15:04, Aleksandr Rybalko wrote: Author: ray Date: Fri Mar 28 22:04:27 2014 New Revision: 263885 URL: http://svnweb.freebsd.org/changeset/base/263885 Log: o Add new vd_driver

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-29 Thread Aleksandr Rybalko
On Sat, 29 Mar 2014 09:18:03 -0700 Nathan Whitehorn wrote: > On 03/28/14 15:04, Aleksandr Rybalko wrote: > > Author: ray > > Date: Fri Mar 28 22:04:27 2014 > > New Revision: 263885 > > URL: http://svnweb.freebsd.org/changeset/base/263885 > > > > Log: > >o Add new vd_driver method to do bitblt

Re: svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-29 Thread Nathan Whitehorn
On 03/28/14 15:04, Aleksandr Rybalko wrote: Author: ray Date: Fri Mar 28 22:04:27 2014 New Revision: 263885 URL: http://svnweb.freebsd.org/changeset/base/263885 Log: o Add new vd_driver method to do bitblt with mask, named vd_maskbitbltchr. o Move vd_bitbltchr vga's driver method to vd_mas

svn commit: r263885 - in head/sys/dev/vt: . hw/vga

2014-03-28 Thread Aleksandr Rybalko
Author: ray Date: Fri Mar 28 22:04:27 2014 New Revision: 263885 URL: http://svnweb.freebsd.org/changeset/base/263885 Log: o Add new vd_driver method to do bitblt with mask, named vd_maskbitbltchr. o Move vd_bitbltchr vga's driver method to vd_maskbitbltchr. o Implement new vd_bitbltchr metho