Re: [Development] QtCS: OpenGL session notes

2012-07-03 Thread Samuel Rødal
On 07/02/2012 02:57 PM, ext Keith Gardner wrote: > Why don't you make an OpenGL middleware driver? Then your application will > always be an OpenGL application and the middleware driver will take all of > the OpenGL calls in place of the system's driver and do the translation > there? The midd

Re: [Development] QtCS: OpenGL session notes

2012-07-02 Thread Keith Gardner
(Nokia-MP/Austin) Cc: development@qt-project.org Subject: Re: [Development] QtCS: OpenGL session notes On 06/28/2012 01:46 PM, Storm-Olsen Marius (Nokia-MP/Austin) wrote: > On 28/06/2012 01:59, ext Samuel Rødal wrote: >> On 06/27/2012 06:30 PM, ext marius.storm-ol...@nokia.com wrote: >>

Re: [Development] QtCS: OpenGL session notes

2012-07-02 Thread Samuel Rødal
On 06/28/2012 01:46 PM, Storm-Olsen Marius (Nokia-MP/Austin) wrote: > On 28/06/2012 01:59, ext Samuel Rødal wrote: >> On 06/27/2012 06:30 PM, ext marius.storm-ol...@nokia.com wrote: >> In theory we could even support both options in the windows platform >> plugin, and choose either depending on wha

Re: [Development] QtCS: OpenGL session notes

2012-06-28 Thread marius.storm-olsen
On 28/06/2012 01:59, ext Samuel Rødal wrote: > On 06/27/2012 06:30 PM, ext marius.storm-ol...@nokia.com wrote: >> On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: >>> Future plans - Desktop OpenGL 3+ support, ES 3 support >> >> We've just added ANGLE support in Qt (-angle ), to enable >> DirectX

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread Samuel Rødal
On 06/27/2012 06:30 PM, ext marius.storm-ol...@nokia.com wrote: > On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: >> Future plans >> - Desktop OpenGL 3+ support, ES 3 support > > We've just added ANGLE support in Qt (-angle ), to enable DirectX > usage instead of OpenGL ES 2 on Windows, due t

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread qtnext
To use Qml on Win8 Metro, we must have a directX backend (with or without angle .. but it seems that for now angle is directX9 only and Metro need DX11), and to be able to use qt5 qml for digital signage on low end hardware ( in that case qt5 qml is just perfect...) we need to have hardware acceler

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread Sean Harmer
On Wednesday 27 June 2012 17:46:32 marius.storm-ol...@nokia.com wrote: > On 27/06/2012 12:14, ext Sean Harmer wrote: > > On Wednesday 27 June 2012 16:30:50 marius.storm-ol...@nokia.com > > > > wrote: > >> On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: > >>> Future plans - Desktop OpenGL 3+ su

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread marius.storm-olsen
On 27/06/2012 12:14, ext Sean Harmer wrote: > On Wednesday 27 June 2012 16:30:50 marius.storm-ol...@nokia.com > wrote: >> On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: >>> Future plans - Desktop OpenGL 3+ support, ES 3 support >> >> We've just added ANGLE support in Qt (-angle ), to enable >>

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread Sean Harmer
On Wednesday 27 June 2012 16:30:50 marius.storm-ol...@nokia.com wrote: > On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: > > Future plans > > - Desktop OpenGL 3+ support, ES 3 support > > We've just added ANGLE support in Qt (-angle ), to enable DirectX > usage instead of OpenGL ES 2 on Window

Re: [Development] QtCS: OpenGL session notes

2012-06-27 Thread marius.storm-olsen
On 25/06/2012 13:44, ext Girish Ramakrishnan wrote: > Future plans > - Desktop OpenGL 3+ support, ES 3 support We've just added ANGLE support in Qt (-angle ), to enable DirectX usage instead of OpenGL ES 2 on Windows, due to many buggy drivers. How will this effort affect this usage? Will we ac

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread Uwe Rathmann
On Tue, 26 Jun 2012 07:05:35 +, gunnar.sletta wrote: > The lines left above highlights the general problem... The QPainter API > is very feature rich and opens up for a number of use patterns that are > less than ideal for performance. Please don't forget that QPainter is more then renderi

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread gunnar.sletta
On Jun 26, 2012, at 11:16 AM, ext Sean Harmer wrote: >> - QOpenGLWindow > > Yes this would be a useful convenience class to have. Which features are we talking about here? I have been thinking that we could add something equivalent to the rasterwindow I did for the examples here: https://code

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread Sean Harmer
On Monday 25 June 2012 11:44:09 Girish Ramakrishnan wrote: > Hi, > OpenGL session notes (pasted from > http://qt-project.org/groups/qt-contributors-summit-2012/wiki/QtOpenGL) > so you can comment inline. Sorry I could not attend this year but the QtCS clashed with my family vacation. > Thanks to

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread Samuel Rødal
On 06/26/2012 09:29 AM, ext Joe Yu wrote: > Hi, > > Is there anybody knows how to enable OpenGL (or OpenGL ES) as QPainter's > backend? I learned from some document there's an existing OpenGL/GLES > backend in QPainter. > > Thanks, > Joe Yu You'll get the OpenGL backend as long as you're paintin

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread Joe Yu
nt-bounces+joe.yu=arm@qt-project.org] On Behalf Of gunnar.sle...@nokia.com Sent: 2012年6月26日 PM 03:06 To: mark...@gmail.com Cc: development@qt-project.org Subject: Re: [Development] QtCS: OpenGL session notes >> - simple imperative GLES2 painter suited for Canvas 2D etc, lose al

Re: [Development] QtCS: OpenGL session notes

2012-06-26 Thread gunnar.sletta
>> - simple imperative GLES2 painter suited for Canvas 2D etc, lose all >> the poorly / unnecessary performing features of QPainter >> - QPainterV2 API, reduced QPaintEngine API >> - learn from Skia >> - improved API that discourages slow use cases > > This is far outside my knowledge area, but

Re: [Development] QtCS: OpenGL session notes

2012-06-25 Thread Mark
On Mon, Jun 25, 2012 at 8:44 PM, Girish Ramakrishnan wrote: > Hi, > OpenGL session notes (pasted from > http://qt-project.org/groups/qt-contributors-summit-2012/wiki/QtOpenGL) > so you can comment inline. > > Thanks to Samuel for leading the session and taking the notes! > > Girish > > Future plan

[Development] QtCS: OpenGL session notes

2012-06-25 Thread Girish Ramakrishnan
Hi, OpenGL session notes (pasted from http://qt-project.org/groups/qt-contributors-summit-2012/wiki/QtOpenGL) so you can comment inline. Thanks to Samuel for leading the session and taking the notes! Girish Future plans - Desktop OpenGL 3+ support, ES 3 support - QOpenGLWindow - Shared cross pro