Re: [Qemu-devel] [PATCH v2] add pflib: PixelFormat conversion library.

2010-06-15 Thread Gerd Hoffmann
+++ b/pflib.h @@ -0,0 +1,6 @@ Missing #if guards and missing license/copyright. Will add. Are you planning on using this somewhere? Yes, for both fbdev and spice. I'd prefer to merge this with some code to use it somewhere as right now, it's dead code. Ok, I'll resend it with fbdev the

Re: [Qemu-devel] [PATCH v2] add pflib: PixelFormat conversion library.

2010-06-14 Thread Anthony Liguori
On 06/14/2010 10:46 AM, Gerd Hoffmann wrote: Signed-off-by: Gerd Hoffmann --- Makefile.objs |1 + pflib.c | 213 + pflib.h |6 ++ 3 files changed, 220 insertions(+), 0 deletions(-) create mode 100644 pflib.c cre

[Qemu-devel] [PATCH v2] add pflib: PixelFormat conversion library.

2010-06-14 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- Makefile.objs |1 + pflib.c | 213 + pflib.h |6 ++ 3 files changed, 220 insertions(+), 0 deletions(-) create mode 100644 pflib.c create mode 100644 pflib.h diff --git a/Makefile.objs