From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:39826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8aWh-0004LN-Qb for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:33:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T8aWg-0006lc-Uj for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:33:31 -0400 Received: from smtp.nfit.au.dk ([130.225.17.180]:39643 helo=nysmtp.nfit.au.dk) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8aWg-0006lS-NX for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:33:30 -0400 From: sandmann@cs.au.dk (=?utf-8?Q?S=C3=B8ren?= Sandmann) References: <704493541.25479840.1346657644362.JavaMail.root@redhat.com> Date: Mon, 03 Sep 2012 19:33:27 +0200 In-Reply-To: <704493541.25479840.1346657644362.JavaMail.root@redhat.com> (Alon Levy's message of "Mon, 3 Sep 2012 03:34:04 -0400") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH-v2 spice 1/2] Set a8 capability in the QXL device if supported by the client List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alon Levy Cc: qemu-devel@nongnu.org, spice-devel@lists.freedesktop.org, =?utf-8?Q?S=C3=B8ren?= Sandmann Pedersen , kraxel@redhat.com Alon Levy writes: >> --- >> server/red_worker.c | 2 ++ >> spice-common | 2 +- >> 2 files changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/server/red_worker.c b/server/red_worker.c >> index 843f559..23f3464 100644 >> --- a/server/red_worker.c >> +++ b/server/red_worker.c >> @@ -10377,6 +10377,8 @@ static void >> handle_new_display_channel(RedWorker *worker, RedClient *client, Red >> SET_CAP(caps, SPICE_DISPLAY_CAP_MONITORS_CONFIG); >> if (red_channel_client_test_remote_cap(rcc, >> SPICE_DISPLAY_CAP_COMPOSITE)) >> SET_CAP(caps, SPICE_DISPLAY_CAP_COMPOSITE); >> + if (red_channel_client_test_remote_cap(rcc, >> SPICE_DISPLAY_CAP_COMPOSITE)) >> + SET_CAP(caps, SPICE_DISPLAY_CAP_A8_SURFACE); > > Didn't you mean to test remote SPICE_DISPLAY_CAP_A8_SURFACE? Yes, good catch. I'll fix before pushing. Thanks, Soren