Re: [Development] Coding style for lambdas with empty parameter list

2019-01-11 Thread Thiago Macieira
On Friday, 11 January 2019 09:16:20 PST Konstantin Ritt wrote: > +1 for []() Let's use <:]() instead. -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center ___ Development mailing list Develop

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Tuukka Turunen
Thanks! Yours, Tuukka Lähettäjä: Development käyttäjän Paul Wicking puolesta Lähetetty: perjantaina, tammikuuta 11, 2019 4:48 ip. Vastaanottaja: development@qt-project.org Aihe: Re: [Development] Requesting a repository for Lottie-Qt implementation On 1/9/1

Re: [Development] Coding style for lambdas with empty parameter list

2019-01-11 Thread Konstantin Ritt
+1 for []() Regards, Konstantin чт, 10 янв. 2019 г. в 15:51, Vitaly Fanaskov : > I vote for shorter form as well. > > But the documentation should be extended with the Philippe's second > example. Trailing return type is rarely required, but we cannot omit > parameters list in this case, becau

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Shawn Rutledge
> On 11 Jan 2019, at 10:02, Simon Hausmann wrote: > The approach of using the JS implementation and wrappers is clever and I got > the same impression that this is what KDE is using. It has upsides (easy to > follow changes) and downsides (overhead, but cannot quite say if that’s > noticeable

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Paul Wicking
On 1/9/19 3:23 PM, Tuukka Turunen wrote: > > Hi, > > I would like to request for a new repository: > > Name of the repository: qt/qtlottie.git > Description: Lottie-Qt, a renderer for Bodymovin animations > Responsible person: Eirik Aavitsland > Gerrit user/email: eirik.aavitsl...@qt.io

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Christoph Keller
Looking forward to your implementation! I have one more implementation to throw in but hope the TQtC one is far more superior. A few months ago I refactored the lottie-ios code to Qt and used a modified version of QtQuick.Shapes since the JavaScript way was about 0.5 fps on a Android/iOS pho

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Sze Howe Koh
On Fri, 11 Jan 2019 at 19:03, Fabrice Mousset | GEOCEPT GmbH wrote: > > Hi Kai, > > I've used the development mailing list because I think this is a bug in the > release. > When I build my application with Qt 5.4.2, Qt 5.6.x or Qt 5.11.2 all works as > expected. > But with Qt 5.12.0, nothing wor

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Edward Welbourne
Kai Koehne (11 January 2019 10:33) wrote > There's been no such change. Your problem is most likely one of two: > > - You actually disable the qDebug, qWarning via custom logging > rules. See http://doc.qt.io/qt-5/qloggingcategory.html , section > "Logging Rules" for the details. Note that thi

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Fabrice Mousset | GEOCEPT GmbH
Hi Kai, the example is very simple: -8<-- DebugTest.pro QT -= gui CONFIG += c++11 console CONFIG -= app_bundle SOURCES += main.cpp --- -8<-- main.cpp --- #include #include int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); qDebug() << "Hello Debug";

Re: [Development] Running AVX2 code in the CI

2019-01-11 Thread Jedrzej Nowacki
On Thursday, January 10, 2019 6:32:02 PM CET Thiago Macieira wrote: > Hello > > Commit c8c5ff19de1c34a99b8315e59015d115957b3584[1] was allowed to pass the > CI despite failing tests in a non-blacklisted test. It's fixed in [2] which > is integrating now. > > The reason this was allowed is because

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Kai Koehne
> -Original Message- > [...] > So I've supposed the Qt 5.12.0 release (MSVC2017 / 32bit) have been build > with QT_NO_WARNING_OUTPUT and QT_NO_DEBUG_OUTPUT. That's not the case, at least for the official packages. QT_NO_WARNING_OUTPUT, QT_NO_DEBUG_OUTPUT anyway does only affect the code i

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Lars Knoll
> On 11 Jan 2019, at 10:02, Simon Hausmann wrote: > > > The approach of using the JS implementation and wrappers is clever and I got > the same impression that this is what KDE is using. It has upsides (easy to > follow changes) and downsides (overhead, but cannot quite say if that’s > notice

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Fabrice Mousset | GEOCEPT GmbH
Hi Kai, I've used the development mailing list because I think this is a bug in the release. When I build my application with Qt 5.4.2, Qt 5.6.x or Qt 5.11.2 all works as expected. But with Qt 5.12.0, nothing works. Only qCritical() messages are working. To be more explicit, I use qInstallMessa

Re: [Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Kai Koehne
Hi Fabrice, There's been no such change. Your problem is most likely one of two: - You actually disable the qDebug, qWarning via custom logging rules. See http://doc.qt.io/qt-5/qloggingcategory.html , section "Logging Rules" for the details. - You have a GUI program that logs to the system wid

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Uwe Rathmann
On Fri, 11 Jan 2019 09:16:12 +0100, Samuel Stirtzel via Development wrote: > There is a property that enables OpenGL rendering for _some_ plots What will work when using QChart as QWidget, but I would assume that it does not have any effect for the QML path - QPainter on QImage is hardcoded in

Re: [Development] QAbstractVideoFilter, the pipeline and QImage

2019-01-11 Thread Val Doroshchuk
> is this happening on multiple threads (or cores? - if available) Are there > multiple frames "in flight"? No and no, just one thread. From: Jason H Sent: Thursday, January 10, 2019 5:28:11 PM To: Val Doroshchuk Cc: Qt development mailing list Subject: Re: [De

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Simon Hausmann
The approach of using the JS implementation and wrappers is clever and I got the same impression that this is what KDE is using. It has upsides (easy to follow changes) and downsides (overhead, but cannot quite say if that’s noticeable). Eirik, what’s the approach of your implementation? Simo

[Development] Qt 5.12 and debug/warnings messages

2019-01-11 Thread Fabrice Mousset | GEOCEPT GmbH
Hi, I have installed Qt 5.12.0 for Windows / MSVC2017-32bit with Qt Maintenance Tool. I wondering why qDebug and qWarning have been disabled in this version? qDebug() and qWarning() do not work, even in Debug build! Why? Is this intentional? Do I have to build Qt from sources to made them work a

Re: [Development] Requesting a repository for Lottie-Qt implementation

2019-01-11 Thread Samuel Stirtzel via Development
Am Do., 10. Jan. 2019 um 18:07 Uhr schrieb Uwe Rathmann : > > On Thu, 10 Jan 2019 14:21:59 +, Kari Oikarinen wrote: > > >> True, but Qt/Charts is also QWidgets only. > >> > > Not quite: https://doc.qt.io/qt-5/qtcharts-qmlchart-example.html > > It's the first time I checked this code, but if I'm