Re: [Spice-devel] Client Graphics Filtering

2012-04-24 Thread Noel Van Hook
If I recall my windows drivers correctly, I don't think the driver even knows what application owns the buffer it is drawing into. Noel On Tue, Apr 24, 2012 at 11:43 AM, Yonit Halperin wrote: > Hi, > > On 04/24/2012 09:12 AM, Alon Levy wrote: >> >> On Tue, Apr 24, 2012 at 09:47:47AM +0800, 蒋媛园 w

Re: [Spice-devel] Client Graphics Filtering

2012-04-24 Thread Yonit Halperin
Hi, On 04/24/2012 09:12 AM, Alon Levy wrote: On Tue, Apr 24, 2012 at 09:47:47AM +0800, 蒋媛园 wrote: Hi I want to filter the graphics to the client. For example, only the graphics of a calculator(in guest OS Win7) are send to the client. I know that there is always the possibility of fal

Re: [Spice-devel] [PATCH] Change xorg-macros -> xorg-x11-util-macros in configure error message

2012-04-24 Thread Christophe Fergeau
On Tue, Apr 24, 2012 at 02:28:42PM +0300, Alon Levy wrote: > On Tue, Apr 24, 2012 at 01:22:41PM +0300, Yaniv Kaul wrote: > > At least in Fedora 17, the correct RPM name is xorg-x11-util-macros > > > > We could use the upstream name too, xorg-util-macros (kinda): > http://cgit.freedesktop.org/xor

Re: [Spice-devel] [PATCH spice-gtk v4] Fix multiple problems with URI parsing

2012-04-24 Thread Daniel P. Berrange
On Mon, Apr 23, 2012 at 07:59:46PM +0200, Marc-André Lureau wrote: > ack, thanks Thanks, applied. Daniel -- |: http://berrange.com -o-http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://virt-manager.org :| |: http://autobuild.org -o

Re: [Spice-devel] spice-gtk 0.12 released

2012-04-24 Thread Marc-André Lureau
Hi - Mensaje original - > After a successfull configure stage, I tried to compile it without > success (while I have no problem with spice-gtk-0.11) : > root@nanoClouD:/opt/spice-gtk-0.12# make > make all-recursive > make[1]: entrant dans le répertoire « /opt/spice-gtk-0.12 » > Making all

Re: [Spice-devel] spice-gtk 0.12 released

2012-04-24 Thread Dominique Rodrigues
Le 24/04/2012 13:41, Marc-André Lureau a écrit : Hi, Please find spice-gtk v0.12 release in its usual location: http://spice-space.org/download/gtk/spice-gtk-0.12.tar.bz2 md5sum 2fec0ba391447b5b4d9242455c55b2a3 sha1sum 0c532e54e6305b031f228ecb43a0060090f0ed9f Since the las

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 6/6] murmurhash3: fix "always_inline function might not be inlinable" warning

2012-04-24 Thread Alon Levy
"__attribute__((always_inline))" does not replace "inline" and they still need to be used together. This fixes "always_inline function might not be inlinable [-Wattributes]" warning in gcc 4.7 --- src/murmurhash3.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/murmurha

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 5/6] qxl_ring: remove volatile. doesn't accomplish anything the mem_barrier doesn't also accomplish, and removes warnings when using memcpy

2012-04-24 Thread Alon Levy
--- src/qxl_ring.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/qxl_ring.c b/src/qxl_ring.c index 7a11fbb..d701791 100644 --- a/src/qxl_ring.c +++ b/src/qxl_ring.c @@ -42,7 +42,7 @@ struct ring struct qxl_ring { -volatile struct ring *ring; +st

[Spice-devel] spice-gtk 0.12 released

2012-04-24 Thread Marc-André Lureau
Hi, Please find spice-gtk v0.12 release in its usual location: http://spice-space.org/download/gtk/spice-gtk-0.12.tar.bz2 md5sum 2fec0ba391447b5b4d9242455c55b2a3 sha1sum 0c532e54e6305b031f228ecb43a0060090f0ed9f Since the last release, the focus has been on bug fixes: - Fix memory leak when gue

Re: [Spice-devel] [PATCH] Change xorg-macros -> xorg-x11-util-macros in configure error message

2012-04-24 Thread Alon Levy
On Tue, Apr 24, 2012 at 01:22:41PM +0300, Yaniv Kaul wrote: > At least in Fedora 17, the correct RPM name is xorg-x11-util-macros > We could use the upstream name too, xorg-util-macros (kinda): http://cgit.freedesktop.org/xorg/util/macros/tree/configure.ac#n25 But this is better anyway. ACK.

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 3/6] xspice: cleanup: avoid const cast warnings on option initializers

2012-04-24 Thread Alon Levy
--- src/qxl_driver.c | 14 ++ src/spiceqxl_inputs.c |4 ++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/qxl_driver.c b/src/qxl_driver.c index af5bfca..fcb1b6b 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -58,6 +58,12 @@ extern void compat_

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 1/6] qxl_driver: cleanup: fix const cast warnings

2012-04-24 Thread Alon Levy
--- src/qxl_driver.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/qxl_driver.c b/src/qxl_driver.c index 6e06174..af5bfca 100644 --- a/src/qxl_driver.c +++ b/src/qxl_driver.c @@ -1619,6 +1619,8 @@ static PciChipsets qxlPciChips[] = #endif #endif /* !XSPICE */

Re: [Spice-devel] [PATCH] Change xorg-macros -> xorg-x11-util-macros in configure error message

2012-04-24 Thread Yaniv Kaul
That's for xf86-video-qxl . Y. On 04/24/2012 01:22 PM, Yaniv Kaul wrote: At least in Fedora 17, the correct RPM name is xorg-x11-util-macros diff --git a/configure.ac b/configure.ac index cb874f7..a97f477 100644 --- a/configure.ac +++ b/configure.ac @@ -36,7 +36,7 @@ AC_CONFIG_HEADERS([config.h

[Spice-devel] [PATCH] Change xorg-macros -> xorg-x11-util-macros in configure error message

2012-04-24 Thread Yaniv Kaul
At least in Fedora 17, the correct RPM name is xorg-x11-util-macros diff --git a/configure.ac b/configure.ac index cb874f7..a97f477 100644 --- a/configure.ac +++ b/configure.ac @@ -36,7 +36,7 @@ AC_CONFIG_HEADERS([config.h]) # Require xorg-macros: XORG_DEFAULT_OPTIONS m4_ifndef([XORG_MACROS_VE

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 2/6] spiceqxl_inputs: fix const discard at initialization warnings

2012-04-24 Thread Alon Levy
--- src/spiceqxl_inputs.c | 64 - 1 file changed, 37 insertions(+), 27 deletions(-) diff --git a/src/spiceqxl_inputs.c b/src/spiceqxl_inputs.c index 62ef19f..5cfa823 100644 --- a/src/spiceqxl_inputs.c +++ b/src/spiceqxl_inputs.c @@ -46,26 +46,6 @@

[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 4/6] add vim headers to set tabstop to 8

2012-04-24 Thread Alon Levy
--- src/qxl.h|1 + src/qxl_cursor.c |1 + src/qxl_driver.c |1 + src/qxl_image.c |1 + src/qxl_mem.c|1 + src/qxl_option_helpers.c |1 + src/qxl_ring.c |1 + src/qxl_surface.c|1 + 8 files change