From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39832) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyHCI-0002Rr-KT for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YyHCH-0000XF-QR for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:58367) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YyHCH-0000Wy-Ka for qemu-devel@nongnu.org; Fri, 29 May 2015 06:07:25 -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 (Postfix) with ESMTPS id 39CE136208C for ; Fri, 29 May 2015 10:07:25 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 29 May 2015 12:07:11 +0200 Message-Id: <1432894036-28513-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 0/5] gtk: add opengl rendering support. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Here is the pull to add opengl support to the gtk ui. please pull, Gerd The following changes since commit ce0274f730eacbd24c706523ddbbabb6b95d0659: Revert "gdbstub: Do not kill target in system emulation mode" (2015-05-28 16:57:35 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-gtk-20150529-1 for you to fetch changes up to 63c67b6d4462b6589b371d55e3740e9f0dba3281: gtk: Replace gdk_cursor_new() (2015-05-29 11:43:29 +0200) ---------------------------------------------------------------- gtk: add opengl rendering support. small bugfixes for gtk and opengl ui code. ---------------------------------------------------------------- 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 | 95 +++++++++++++++++++++++++----- vl.c | 11 +++- 10 files changed, 433 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