qt5base-lts/examples/opengl
Marc Mutz 082f10c9eb QOpenGLWindow example: use std::unique_ptr instead of QScopedPointer
QScopedPointer is scheduled for deprecation, and can't decide whether
it wants to be a scoped, or a unique pointer.

The use of a unique_ptr members requires that the destructor be
out-of-line, since the payload classes are only forward-declared in
the header file.

Change-Id: Id0dcdde52cb3adc30d3051d2eed1d24c76154921
Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
2019-07-25 14:17:51 +00:00
..
2dpainting Examples: Replace 'Q_DECL_OVERRIDE' by 'override' 2016-06-15 09:32:30 +00:00
computegles31 Replace Q_DECL_OVERRIDE with override where possible 2017-09-19 11:53:42 +00:00
contextinfo Deprecate conversion functions between QList and QSet 2019-05-07 14:15:44 +00:00
cube Examples: Replace 'Q_DECL_OVERRIDE' by 'override' 2016-06-15 09:32:30 +00:00
doc Unify license header usage. 2016-03-29 10:20:03 +00:00
hellogl2 Hello GL2 example: Fix exit crash 2017-09-05 10:55:11 +00:00
hellogles3 hellogles3: Request core profile context 2019-05-11 12:01:53 +00:00
hellowindow Use requestUpdate instead of timer in a few GL examples 2019-01-22 21:25:39 +00:00
legacy Remove usages of deprecated APIs of qtbase/gui 2019-07-13 10:43:15 +02:00
paintedwindow examples: Use QOverload to select overloaded signals and slots 2016-12-22 14:54:55 +00:00
qopenglwidget Convert uses of QTime as a timer to QElapsedTimer 2019-06-14 10:42:33 +02:00
qopenglwindow QOpenGLWindow example: use std::unique_ptr instead of QScopedPointer 2019-07-25 14:17:51 +00:00
textures Examples: Replace 'Q_DECL_OVERRIDE' by 'override' 2016-06-15 09:32:30 +00:00
threadedqopenglwidget ThreadedOpenGL example: use std::unique_ptr instead of QScopedPointer 2019-05-15 11:03:52 +02:00
opengl.pro Examples: Remove remains of wince 2017-07-14 17:30:51 +00:00
README Remove references to demos from docs. 2011-07-05 19:57:54 +02:00

Qt provides support for integration with OpenGL implementations on all
platforms, giving developers the opportunity to display hardware accelerated
3D graphics alongside a more conventional user interface.

These examples demonstrate the basic techniques used to take advantage of
OpenGL in Qt applications.


Documentation for these examples can be found via the Examples
link in the main Qt documentation.