Skip to content

Releases: florianblume/qt3d-widget

2.1 Multisampling

22 Jan 14:18
5bed3a2
Compare
Choose a tag to compare

Included multisampling functionality.

2.0: Full compatibility

27 Oct 14:22
7bde519
Compare
Choose a tag to compare
  • Removed dependencies on Qt3D internal classes
  • Made OpenGL use the texture Qt3D renders offline to
  • Should now be compatible with most Qt3D versions

Version 1.0

08 Sep 12:35
Compare
Choose a tag to compare

Version 1.0 of the Qt3D widget compiled on Ubuntu 20.04.

You can either use the static library (libqt3d-widget.a) in your project, which will be compiled into the executable. Or you use the dynamic linked library (libqt3d-widget.so).

Note:

If you want to use the dynamic linked library specify

LIBS += -L../path/to/your/libs/folder/ -lqt3d-widget

If you want to use the static library but keep the dynamic library in the same folder you must specify the full file name like so:

LIBS += ../path/to/your/libs/folder/libqt3d-widget.a

Or otherwise qmake will use the dynamic version. The example test project is built using the static library.

The necessary header files are in the include folder.