From patchwork Mon Sep 3 17:53:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?S=C3=B8ren_Sandmann?= X-Patchwork-Id: 181401 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3D0972C008F for ; Tue, 4 Sep 2012 03:51:23 +1000 (EST) Received: from localhost ([::1]:35629 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8anx-0000pT-99 for incoming@patchwork.ozlabs.org; Mon, 03 Sep 2012 13:51:21 -0400 Received: from eggs.gnu.org ([208.118.235.92]:45869) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8ane-0000jT-HM for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:51:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T8and-0003Wh-Of for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:51:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2535) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T8and-0003Vt-Ft for qemu-devel@nongnu.org; Mon, 03 Sep 2012 13:51:01 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q83HoxPA004372 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Mon, 3 Sep 2012 13:50:59 -0400 Received: from dhcp-100-3-184.bos.redhat.com (dhcp-189-4.bos.redhat.com [10.16.189.4]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q83Howja024642; Mon, 3 Sep 2012 13:50:59 -0400 From: =?UTF-8?q?S=C3=B8ren=20Sandmann?= To: spice-devel@freedesktop.org, qemu-devel@nongnu.org Date: Mon, 3 Sep 2012 13:53:51 -0400 Message-Id: <1346694835-23590-1-git-send-email-sandmann@cs.au.dk> In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-MIME-Autoconverted: from 8bit to quoted-printable by mx1.redhat.com id q83HoxPA004372 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: =?UTF-8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Subject: [Qemu-devel] [PATCH 1/5] client: Advertise A8_SURFACE capability X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Søren Sandmann Pedersen --- client/display_channel.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/client/display_channel.cpp b/client/display_channel.cpp index d08072d..49a4c6a 100644 --- a/client/display_channel.cpp +++ b/client/display_channel.cpp @@ -652,6 +652,7 @@ DisplayChannel::DisplayChannel(RedClient& client, uint32_t id, set_draw_handlers(); set_capability(SPICE_DISPLAY_CAP_COMPOSITE); + set_capability(SPICE_DISPLAY_CAP_A8_SURFACE); } DisplayChannel::~DisplayChannel()