Re: [Interest] Can I get c++14 instead of g++14?

2016-03-26 Thread Nikos Chantziaras
On 27/03/16 08:55, Thiago Macieira wrote: On domingo, 27 de março de 2016 05:53:59 PDT Nikos Chantziaras wrote: After upgrading to Qt 5.6.0 on Linux, when I do: CONFIG += c++14 in my project file, the build uses -std=gnu++14. Do I have to manually remove that and use -std=c++14, or is ther

Re: [Interest] Can I get c++14 instead of g++14?

2016-03-26 Thread Thiago Macieira
On domingo, 27 de março de 2016 05:53:59 PDT Nikos Chantziaras wrote: > After upgrading to Qt 5.6.0 on Linux, when I do: > >CONFIG += c++14 > > in my project file, the build uses -std=gnu++14. Do I have to manually > remove that and use -std=c++14, or is there a way to tell qmake to not > ena

[Interest] Can I get c++14 instead of g++14?

2016-03-26 Thread Nikos Chantziaras
After upgrading to Qt 5.6.0 on Linux, when I do: CONFIG += c++14 in my project file, the build uses -std=gnu++14. Do I have to manually remove that and use -std=c++14, or is there a way to tell qmake to not enable GNU extensions without me saying so? ___

[Interest] qtwebview with qtwebchannel

2016-03-26 Thread Sylvain Pointeau
hello, please could you confirm if qtwebchannel works with qtwebview? if yes, would you have some exemple to show how it works in qml? addtionally, does qtwebview exist for windows 10? Best regards, Sylvain ___ Interest mailing list Interest@qt-project

Re: [Interest] [Qt3D] Crash when trying to update a geometry

2016-03-26 Thread Xavier Bigand
May it come from the fact that we force Qt to use OpenGL and remove multi-threaded scene graph? qputenv("QML_FORCE_THREADED_RENDERER", "0"); qputenv("QML_BAD_GUI_RENDER_LOOP", "1"); qputenv("QSG_RENDER_LOOP", "basic"); QGuiApplication::setAttribute(Qt::AA_UseDesktopOpenGL, true); 2016-03-26

Re: [Interest] [Qt3D] Crash when trying to update a geometry

2016-03-26 Thread Xavier Bigand
I am getting curious errors in the console : ASSERT failure in QVector::at: "index out of range", file c:\Users\qt\work\install\include/QtCore/qvector.h, line 419 ASSERT failure in QVector::at: "index out of range", file c:\Users\qt\work\install\include/QtCore/qvector.h, line 419 ASSERT failure

[Interest] [Qt3D] Crash when trying to update a geometry

2016-03-26 Thread Xavier Bigand
Hi, I am creating a mesh empty and try to update it later, I don't understand why it crash. The crash happens in Qt3DCore::QBackendNode. I update the mesh by calling setData on the vertexBuffer and setCount on the corresponding attributs. I do the same for the indexBuffer. May I do something wr