From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yv5mm-0003pa-GJ for qemu-devel@nongnu.org; Wed, 20 May 2015 11:19:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yv5mi-0003eL-3e for qemu-devel@nongnu.org; Wed, 20 May 2015 11:19:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58851) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yv5mh-0003dw-Si for qemu-devel@nongnu.org; Wed, 20 May 2015 11:19:52 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t4KFJori013364 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 20 May 2015 11:19:51 -0400 From: Gerd Hoffmann Date: Wed, 20 May 2015 17:19:37 +0200 Message-Id: <1432135182-29676-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/5] gtk: add opengl support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, opengl support continued. This series brings some little fixups, adds egl helper functions and implements opengl support for the gtk ui using that. v2: Fixes according to review by Max, also added "Replace gdk_cursor_new" patch. Gerd Hoffmann (4): ui: use libexpoxy ui: shader.h protect against double inclusion ui: add egl-helpers gtk: add opengl support, using egl Max Reitz (1): gtk: Replace gdk_cursor_new() configure | 4 +- include/ui/console.h | 5 +- include/ui/egl-helpers.h | 16 +++++ include/ui/gtk.h | 23 ++++++++ include/ui/shader.h | 10 ++-- ui/Makefile.objs | 6 ++ ui/egl-helpers.c | 148 +++++++++++++++++++++++++++++++++++++++++++++++ ui/gtk-egl.c | 141 ++++++++++++++++++++++++++++++++++++++++++++ ui/gtk.c | 82 +++++++++++++++++++++----- vl.c | 11 +++- 10 files changed, 420 insertions(+), 26 deletions(-) create mode 100644 include/ui/egl-helpers.h create mode 100644 ui/egl-helpers.c create mode 100644 ui/gtk-egl.c -- 1.8.3.1