stephone
stephone

Reputation: 197

Qt development and the necessity of OpenGL with QML pages

Is OpenGL mandatory in order to run a Qt application made of QML pages ?

Upvotes: 2

Views: 256

Answers (2)

Well, an implementation of OpenGL ES 2 is mandatory for Qt Quick 2, but that doesn't mean you need to use native OpenGL. On Windows you really should be using ANGLE, since on many Windows systems the installed OpenGL is either too old or broken.

Upvotes: 3

Nicholas Smith
Nicholas Smith

Reputation: 11754

Yes, with Qt Quick 2.0 OpenGL is a mandatory requirement.

Upvotes: 2

Related Questions