Re: [Development] Qt 5.9 beta4 available

2017-05-16 Thread Тимур Артиков
Hi, I believe, QTBUG-60547 should be fixed before the release. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] [BB++] Now is 3.5x faster than Node.JS

2017-07-23 Thread Тимур Артиков
Hi there, The reason why the ListView with images test is not performed smoothly, may be the lack of asynchronous images loading (Image.asynchronous property). -- Timur Artikov ___ Development mailing list Development@qt-project.org http://lists.qt-pro

[Development] Custom QAnimationDriver

2014-04-10 Thread Тимур Артиков
Hi, I'm trying to use Qt Quick for generation image sequence for video broadcasting. To do that I need to update Qt Quick scene animations with frame rate of the output video. I tried to create class derived from QAnimationDriver and overload the QAnimationDriver::advance method which calls QUnifie

Re: [Development] Custom QAnimationDriver

2014-04-13 Thread Тимур Артиков
Hi Gunnar, In my case the current time of animations should be controlled by a video output device, and this time is not equals to real time (QUnifiedTimer::time.elapsed()). The QSG_FIXED_ANIMATION_STEP option is also not acceptable. I can't suppose that rendering performance is stable, and in the

[Development] Crash dump generation in QML application (on Windows).

2014-09-16 Thread Тимур Артиков
Hi, I'm trying to use crash dump generation in my QML application. To do that I set an exception handler(SetUnhandledExceptionFilter) at the application start up, and write a minidump file (MiniDumpWriteDump) in the exception handler. It works fine when a crash happens in main() function, but when