All of lore.kernel.org
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: qemu-devel@nongnu.org
Cc: "Andreas Färber" <andreas.faerber@web.de>, xen-devel@lists.xensource.com
Subject: Re: [Qemu-devel] [PATCH 4/7] xen: add framebuffer backend driver
Date: Fri, 01 Aug 2008 09:57:14 -0500	[thread overview]
Message-ID: <4893244A.4040008@codemonkey.ws> (raw)
In-Reply-To: <48903B96.6030407@redhat.com>

Gerd Hoffmann wrote:
>   Hi,
>
>   
>>>> +/* A convenient function for munging pixels between different depths */
>>>> +#define
>>>> BLT(SRC_T,DST_T,RSB,GSB,BSB,RDB,GDB,BDB)                        \
>>>> +    for (line = y ; line < (y+h) ; line++) {                \
>>>>         
>
>   
>>> There are similar conversion macros in the VGA code.  I don't know how
>>> practical it would be to reuse them but it's at least worth looking at.
>>>       
>> We created a file hw/pixel_ops.h to share code between vga.c and tcx.c,
>> probably it can be extended to serve Xen as well.
>>     
>
> Uhm, well, it isn't that easy.  Unifying that looks like a big job in
> itself.  pixel_ops.h as-is isn't very helpful for xen-framebuffer.  The
> xen-framebuffer macro isn't very useful to others.
>   

Okay, the xen-framebuffer macros aren't that big so it's not a huge 
deal.  Was worth looking into though.  Thanks!

Regards,

Anthony Liguori

> What IMHO would be most useful is a set of generic conversion functions,
> operating on scanline level, much like the ones created by
> vga_template.h, but without dependencies on vga.c internals.
>
> cheers,
>   Gerd
>
>   

  reply	other threads:[~2008-08-01 14:57 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-28 13:17 [Qemu-devel] [PATCH 0/7] merge some xen bits into qemu Gerd Hoffmann
2008-07-28 13:17 ` Gerd Hoffmann
2008-07-28 13:17 ` [Qemu-devel] [PATCH 1/7] xen: groundwork for xen support Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:04   ` [Qemu-devel] " Anthony Liguori
2008-07-28 14:52     ` Gerd Hoffmann
2008-07-29  8:10       ` [Xen-devel] " Daniel P. Berrange
2008-07-29  8:10         ` Daniel P. Berrange
2008-07-29 13:32         ` [Xen-devel] " Anthony Liguori
2008-07-29 13:32           ` Anthony Liguori
2008-07-29 14:24           ` [Xen-devel] " Daniel P. Berrange
2008-07-29 14:24             ` Daniel P. Berrange
2008-07-29 19:11             ` [Xen-devel] " Anthony Liguori
2008-07-29 19:11               ` Anthony Liguori
2008-07-29 21:36               ` [Xen-devel] " Gerd Hoffmann
2008-07-29 21:36                 ` Gerd Hoffmann
2008-07-29 21:48                 ` [Xen-devel] " Anthony Liguori
2008-07-29 21:48                   ` Anthony Liguori
2008-07-29 14:32           ` [Xen-devel] " Gerd Hoffmann
2008-07-29 14:32             ` Gerd Hoffmann
2008-07-28 23:14     ` [Xen-devel] " Samuel Thibault
2008-07-28 23:14       ` Samuel Thibault
2008-07-29  7:38       ` [Xen-devel] " Gerd Hoffmann
2008-07-29  7:38         ` Gerd Hoffmann
2008-07-29  8:12         ` [Xen-devel] " Daniel P. Berrange
2008-07-29  8:12           ` Daniel P. Berrange
2008-07-29  8:55           ` [Xen-devel] " Gerd Hoffmann
2008-07-29  8:55             ` Gerd Hoffmann
2008-07-28 13:17 ` [Qemu-devel] [PATCH 2/7] xen: backend driver core Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:13   ` [Qemu-devel] " Anthony Liguori
2008-07-28 15:51     ` Gerd Hoffmann
2008-07-28 13:17 ` [Qemu-devel] [PATCH 3/7] xen: add console backend driver Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:17   ` [Qemu-devel] " Anthony Liguori
2008-07-28 15:43     ` Gerd Hoffmann
2008-07-28 19:04       ` Anthony Liguori
2008-07-28 13:17 ` [Qemu-devel] [PATCH 4/7] xen: add framebuffer " Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:22   ` [Qemu-devel] " Anthony Liguori
2008-07-28 14:41     ` Andreas Färber
2008-07-28 14:41       ` Andreas Färber
2008-07-30  9:59       ` [Qemu-devel] " Gerd Hoffmann
2008-08-01 14:57         ` Anthony Liguori [this message]
2008-07-30  9:20     ` Gerd Hoffmann
2008-07-30  9:20       ` Gerd Hoffmann
2008-07-30 16:31       ` [Qemu-devel] " Markus Armbruster
2008-07-30 16:31         ` Markus Armbruster
2008-08-01 15:05         ` Anthony Liguori
2008-07-28 13:17 ` [Qemu-devel] [PATCH 5/7] xen: add block device " Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:25   ` [Qemu-devel] " Anthony Liguori
2008-07-28 13:17 ` [Qemu-devel] [PATCH 6/7] xen: add net " Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
2008-07-28 14:27   ` [Qemu-devel] " Anthony Liguori
2008-07-28 15:45     ` Gerd Hoffmann
2008-07-28 13:17 ` [Qemu-devel] [PATCH 7/7] xen: blk & nic configuration via cmd line Gerd Hoffmann
2008-07-28 13:17   ` Gerd Hoffmann
  -- strict thread matches above, loose matches on Subject: below --
2008-08-04 15:50 [Qemu-devel] [PATCH 0/7] merge some xen bits into qemu Gerd Hoffmann
2008-08-04 15:50 ` [Qemu-devel] [PATCH 4/7] xen: add framebuffer backend driver Gerd Hoffmann
2008-08-04 17:09   ` Blue Swirl
2008-08-04 18:20     ` Gerd Hoffmann
2008-10-28 12:23 [Qemu-devel] [PATCH 0/7] merge some xen bits into qemu Gerd Hoffmann
2008-10-28 12:23 ` [Qemu-devel] [PATCH 4/7] xen: add framebuffer backend driver Gerd Hoffmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4893244A.4040008@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=andreas.faerber@web.de \
    --cc=qemu-devel@nongnu.org \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.