Re: [Qemu-devel] [PATCH 3/9] ui/console: add opengl context and scanout support interfaces.

2015-09-15 Thread Paolo Bonzini
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

Re: [Qemu-devel] [PATCH 3/9] ui/console: add opengl context and scanout support interfaces.

2015-09-10 Thread Marc-André Lureau
On Wed, Sep 9, 2015 at 1:20 PM, Gerd Hoffmann wrote: > Add callbacks for opengl context management and scanout texture > configuration to DisplayChangeListenerOps. > > Signed-off-by: Gerd Hoffmann > --- > include/ui/console.h | 36 > ui/console.c | 67 >

[Qemu-devel] [PATCH 3/9] ui/console: add opengl context and scanout support interfaces.

2015-09-09 Thread Gerd Hoffmann
Add callbacks for opengl context management and scanout texture configuration to DisplayChangeListenerOps. Signed-off-by: Gerd Hoffmann --- include/ui/console.h | 36 ui/console.c | 67 ++-- 2 files changed, 101