From patchwork Wed Jan 13 12:02:23 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 566898 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 9E8A8140317 for ; Wed, 13 Jan 2016 23:04:51 +1100 (AEDT) Received: from localhost ([::1]:36653 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJKAS-0008PQ-TB for incoming@patchwork.ozlabs.org; Wed, 13 Jan 2016 07:04:48 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJK8N-0004JI-UN for qemu-devel@nongnu.org; Wed, 13 Jan 2016 07:02:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aJK8J-00059K-5t for qemu-devel@nongnu.org; Wed, 13 Jan 2016 07:02:39 -0500 Received: from mx1.redhat.com ([209.132.183.28]:50641) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJK8J-000583-1Z for qemu-devel@nongnu.org; Wed, 13 Jan 2016 07:02:35 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 0CA5BC0AD1E3; Wed, 13 Jan 2016 12:02:33 +0000 (UTC) Received: from nilsson.home.kraxel.org (ovpn-116-51.ams2.redhat.com [10.36.116.51]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u0DC2VGK014168; Wed, 13 Jan 2016 07:02:32 -0500 Received: by nilsson.home.kraxel.org (Postfix, from userid 500) id 3C0CE81CD3; Wed, 13 Jan 2016 13:02:31 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 13 Jan 2016 13:02:23 +0100 Message-Id: <1452686548-6291-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1452686548-6291-1-git-send-email-kraxel@redhat.com> References: <1452686548-6291-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Gerd Hoffmann Subject: [Qemu-devel] [PATCH 1/6] zap qemu_egl_has_ext in include/ui/egl-helpers.h 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 Drop leftover prototype which sneaked in by mistake Signed-off-by: Gerd Hoffmann Reviewed-by: Marc-André Lureau --- include/ui/egl-helpers.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/ui/egl-helpers.h b/include/ui/egl-helpers.h index 5ad5dc3..8c84398 100644 --- a/include/ui/egl-helpers.h +++ b/include/ui/egl-helpers.h @@ -11,6 +11,5 @@ EGLSurface qemu_egl_init_surface_x11(EGLContext ectx, Window win); int qemu_egl_init_dpy(EGLNativeDisplayType dpy, bool gles, bool debug); EGLContext qemu_egl_init_ctx(void); -bool qemu_egl_has_ext(const char *haystack, const char *needle); #endif /* EGL_HELPERS_H */