From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33114) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuiWU-0007uM-0f for qemu-devel@nongnu.org; Tue, 19 May 2015 10:29:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YuiWO-0005Sm-NY for qemu-devel@nongnu.org; Tue, 19 May 2015 10:29:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55759) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YuiWO-0005ST-Gx for qemu-devel@nongnu.org; Tue, 19 May 2015 10:29:28 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t4JETSqo013483 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 19 May 2015 10:29:28 -0400 From: Gerd Hoffmann Date: Tue, 19 May 2015 16:29:17 +0200 Message-Id: <1432045761-15543-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/4] 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. please review, Gerd Gerd Hoffmann (4): ui: use libexpoxy ui: shader.h protect against double inclusion ui: add egl-helpers gtk: add opengl support, using egl configure | 2 +- 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 | 143 +++++++++++++++++++++++++++++++++++++++++++++++ ui/gtk-egl.c | 141 ++++++++++++++++++++++++++++++++++++++++++++++ ui/gtk.c | 77 ++++++++++++++++++++----- vl.c | 11 +++- 10 files changed, 410 insertions(+), 24 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