From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbldC-0006vB-Fu for qemu-devel@nongnu.org; Tue, 15 Sep 2015 04:30:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zbld9-0006l9-1t for qemu-devel@nongnu.org; Tue, 15 Sep 2015 04:30:26 -0400 Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:37426) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zbld8-0006ka-OQ for qemu-devel@nongnu.org; Tue, 15 Sep 2015 04:30:22 -0400 Received: by wicfx3 with SMTP id fx3so16275415wic.0 for ; Tue, 15 Sep 2015 01:30:22 -0700 (PDT) Sender: Paolo Bonzini References: <1441797654-15350-1-git-send-email-kraxel@redhat.com> <1441797654-15350-4-git-send-email-kraxel@redhat.com> From: Paolo Bonzini Message-ID: <55F7D71A.50100@redhat.com> Date: Tue, 15 Sep 2015 10:30:18 +0200 MIME-Version: 1.0 In-Reply-To: <1441797654-15350-4-git-send-email-kraxel@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/9] ui/console: add opengl context and scanout support interfaces. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , qemu-devel@nongnu.org On 09/09/2015 13:20, Gerd Hoffmann wrote: > +typedef void *qemu_gl_context; > + > +struct qemu_gl_params { > + int major_ver; > + int minor_ver; > +}; > + Please use QEMUGLContext and QEMUGLParams (with a typedef for the latter). Paolo