qt5base-lts/examples/opengl/pbuffers
Sean Harmer 51d40d7e9b Make gui/math3d classes use float rather than qreal
This corrects the mismatch between using floats for internal storage
and qreal in the API of QVector*D which leads to lots of implicit
casts between double and float.

This change also stops users from being surprised by the loss of
precision when using these classes on desktop platforms and removes
the need for the private constructors taking a dummy int as the final
argument.

The QMatrix4x4 and QQuaternion classes have been changed to use float
for their internal storage since these are meant to be used in
conjunction with the QVector*D classes. This is to prevent unexpected
loss of precision and to improve performance.

The on-disk format has also been changed from double to float thereby
reducing the storage required when streaming vectors and matrices. This
is potentially a large saving when working with complex 3D meshes etc.

This also has a significant performance improvement when passing
matrices to QOpenGLShaderProgram (and QGLShaderProgram) as we no
longer have to iterate and convert the data to floats. This is
an operation that could easily be needed many times per frame.

This change also opens the door for further optimisations of these
classes to be implemented by using SIMD intrinsics.

This needs to be applied in conjunction with

https://codereview.qt-project.org/#change,33548

Task-number: QTBUG-21035
Task-number: QTBUG-20661
Change-Id: I9321b06040ffb93ae1cbd72fd2013267ac901b2e
Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
2012-09-07 13:27:38 +02:00
..
cube.cpp Make gui/math3d classes use float rather than qreal 2012-09-07 13:27:38 +02:00
cube.h Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
cubelogo.png Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
glwidget.cpp Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
glwidget.h Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
main.cpp Remove "All rights reserved" line from license headers. 2012-01-30 03:54:59 +01:00
pbuffers.desktop Squashed commit of changes from the 4.8-temp branch. 2011-05-23 14:24:07 +02:00
pbuffers.pro QtBase examples: Remove Maemo/Symbian-specific code. 2011-10-18 15:47:49 +02:00
pbuffers.qrc Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00