Re: [Development] websockets (was RE: Qt 5.3 Feature freeze is coming quite soon...)

2014-02-12 Thread Thiago Macieira
Em qua 12 fev 2014, às 08:01:23, Kurt Pattyn escreveu: We can always 'duplicate' some code from the std::random library How 'secure' should this be? Is a Mersenne-Twister for instance 'secure' enough? As secure as we can get it. We should use the CPU instructions and/or /dev/random whenever

[Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
I build 5.2.1 for a embedded system and the generated Qt5GuiConfigExtras.cmake fails to find GLES2/gl2.h. The reason is that the including dir GLES2 is used twice in the find command, GLES2/gl2.h is searched for in /usr/include/GLES2, but there is no /usr/include/GLES2/GLES2/gl2.h:

[Development] armv5 and armv7 in one apk. How to deploy?

2014-02-12 Thread Oleg Shalnev
Hello All in this group! Is it possible to place armv5 and armv7 in one apk or I must create different apk for different platforms? Please help me with advice or documentation page. Thanks a lot! -- Oleg Shalnev (Kalpa Project) -- mailto:

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Stephen Kelly
On Wednesday, February 12, 2014 09:19:35 Peter Kuemmel wrote: I build 5.2.1 for a embedded system and the generated Qt5GuiConfigExtras.cmake fails to find GLES2/gl2.h. The reason is that the including dir GLES2 is used twice in the find command You'll need to find out why it's generated

[Development] i.MX6 zero copy video playback

2014-02-12 Thread Thomas Senyk
Hi, I finally got around to polish and upstream zero copy video playback for the i.MX6. The change: https://codereview.qt-project.org/#change,76764 A video showcasing the functionality: http://www.youtube.com/watch?v=pmxsWGhrrBQ Greets Thomas ___

Re: [Development] armv5 and armv7 in one apk. How to deploy?

2014-02-12 Thread BogDan
Hi,   Long long time ago, with some little effort you could put both armv5 and armv7 libs in the same .pak, sadly starting with Qt 5.2 it is very hard to do it.    If your application doesn't do any complicated CPU computation itself and relies only on Qt libs to do the hard work, and if you

[Development] SJLJ vs DW2 (Was: Re: Qt 5.2.0 - Beta Release Testing)

2014-02-12 Thread Markus Goetz
Hi Kai, On 25.10.13 10:05, Koehne Kai wrote: I think the link is outdated. MinGW-builds nowadays supported both dw2 and sjlj exception handling for 32 bit since ages, see e.g. http://mingw-w64.sourceforge.net/download.php#mingw-builds (Note that the Mingw-w64 and MinGW-builds projects

Re: [Development] Plans for printing in 5.3 onwards

2014-02-12 Thread John Layt
On Monday 10 Feb 2014 17:07:11 Shaw Andy wrote: Since the feature freeze is on the 14th I have been eagerly awaiting the changes that have been indicated already have been done so I can carry on testing. Have I missed some updates or something? I am concerned because I know how many people

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
set(_GL_INCDIRS /usr/include/GLES2) Where does this come from? Generated by Qt5GuiConfigExtras.cmake.in set(_GL_INCDIRS $$CMAKE_GL_INCDIRS) find_path(_qt5gui_OPENGL_INCLUDE_DIR $$CMAKE_GL_HEADER_NAME PATHS ${_GL_INCDIRS} !!IF !mac NO_DEFAULT_PATH !!ENDIF ) gui.pro defines

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Stephen Kelly
On Wednesday, February 12, 2014 12:11:42 Peter Kuemmel wrote: and QMAKE_INCDIR_OPENGL_ES2 is set by configure to QMAKE_INCDIR_OPENGL_ES2 = .../sysroot/usr/include/GLES2 Is this correct? Thanks, -- Stephen Kelly stephen.ke...@kdab.com | Software Engineer KDAB (Deutschland) GmbH Co.KG, a

Re: [Development] The VS2008 WinCE errors

2014-02-12 Thread Sergio Martins
On Tuesday, February 11, 2014 12:59:45 Thiago Macieira wrote: Current tests are frequently showing the following error messages: c: \work\build\qt\qtbase\tests\auto\corelib\global\qtendian\tst_qtendian.cpp(14 0) : fatal error C1001: An internal error has occurred in the compiler. If this

Re: [Development] SJLJ vs DW2 (Was: Re: Qt 5.2.0 - Beta Release Testing)

2014-02-12 Thread Koehne Kai
-Original Message- From: development-bounces+kai.koehne=digia@qt-project.org [mailto:development-bounces+kai.koehne=digia@qt-project.org] On Behalf Of Markus Goetz Sent: Wednesday, February 12, 2014 11:45 AM To: development@qt-project.org Subject: [Development] SJLJ vs DW2

Re: [Development] The VS2008 WinCE errors

2014-02-12 Thread Björn Breitmeyer
Hi Thiago, the internal error is a compiler bug. We don't exactly know whats necessary to trigger it. It happens more likely if there is more than one instance of the compiler running at the same time, or if a visual studio environment is opened. However some code pathes might be triggering

Re: [Development] SJLJ vs DW2 (Was: Re: Qt 5.2.0 - Beta Release Testing)

2014-02-12 Thread Ray Donnelly
On Wed, Feb 12, 2014 at 12:03 PM, Koehne Kai kai.koe...@digia.com wrote: -Original Message- From: development-bounces+kai.koehne=digia@qt-project.org [mailto:development-bounces+kai.koehne=digia@qt-project.org] On Behalf Of Markus Goetz Sent: Wednesday, February 12, 2014

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
and QMAKE_INCDIR_OPENGL_ES2 is set by configure to QMAKE_INCDIR_OPENGL_ES2 = .../sysroot/usr/include/GLES2 Is this correct? Yes, in this directory is gl2.h. Thanks, -- Stephen Kelly stephen.ke...@kdab.com | Software Engineer KDAB (Deutschland) GmbH Co.KG, a KDAB Group Company

Re: [Development] Qt Quick Controls Calendar

2014-02-12 Thread Mitch Curtis
On 01/17/2014 05:34 PM, Mitch Curtis wrote: On 12/06/2013 02:02 PM, Mitch Curtis wrote: Hello. At the beginning of this year I started work on a Calendar for Qt Quick Controls as a sort of side project. After removing the WIP from the commit message, I got some feedback from developers who

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Stephen Kelly
On Wednesday, February 12, 2014 14:00:11 Peter Kuemmel wrote: and QMAKE_INCDIR_OPENGL_ES2 is set by configure to QMAKE_INCDIR_OPENGL_ES2 = .../sysroot/usr/include/GLES2 Is this correct? Yes, in this directory is gl2.h. I don't think I got my point across. Would

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Peter Kuemmel
Gesendet: Mittwoch, 12. Februar 2014 um 14:14 Uhr Von: Stephen Kelly stephen.ke...@kdab.com An: development@qt-project.org Betreff: Re: [Development] GL headers in Qt5GuiConfigExtras.cmake On Wednesday, February 12, 2014 14:00:11 Peter Kuemmel wrote: and QMAKE_INCDIR_OPENGL_ES2 is set

Re: [Development] GL headers in Qt5GuiConfigExtras.cmake

2014-02-12 Thread Stephen Kelly
On Wednesday, February 12, 2014 15:11:25 Peter Kuemmel wrote: Gesendet: Mittwoch, 12. Februar 2014 um 14:14 Uhr Von: Stephen Kelly stephen.ke...@kdab.com An: development@qt-project.org Betreff: Re: [Development] GL headers in Qt5GuiConfigExtras.cmake On Wednesday, February 12, 2014

[Development] ActiveQt AxServer with CMake

2014-02-12 Thread Fricot, Daniel
Hi, Has anyone managed to create an ActiveQt server with CMake? I got it working with qmake but we need to do this with CMake. I also tried idc manually after CMake but then I keep getting the error: QObject::startTimer: Timers can only be used with threads started with QThread IDL generation

Re: [Development] Plans for printing in 5.3 onwards

2014-02-12 Thread John Layt
On Wednesday 12 Feb 2014 12:03:53 John Layt wrote: On Monday 10 Feb 2014 17:07:11 Shaw Andy wrote: Since the feature freeze is on the 14th I have been eagerly awaiting the changes that have been indicated already have been done so I can carry on testing. Have I missed some updates or

Re: [Development] ActiveQt AxServer with CMake

2014-02-12 Thread Stephen Kelly
On Wednesday, February 12, 2014 14:24:05 Fricot, Daniel wrote: Hi, Has anyone managed to create an ActiveQt server with CMake? I got it working with qmake but we need to do this with CMake. You might try the cmake users mailing list. Thanks, -- Stephen Kelly stephen.ke...@kdab.com |

Re: [Development] websockets (was RE: Qt 5.3 Feature freeze is coming quite soon...)

2014-02-12 Thread Konrad Rosenbaum
On Wednesday, Wednesday 12 February 2014 at 08:01, Kurt Pattyn wrote: On 11 Feb 2014, at 19:14, Thiago Macieira thiago.macie...@intel.com wrote: Em ter 11 fev 2014, às 16:26:44, Tony Van Eerd escreveu: http://channel9.msdn.com/Events/GoingNative/2013/rand-Considered-Harmful No doubt. And

Re: [Development] Plans for printing in 5.3 onwards

2014-02-12 Thread Friedemann Kleint
Hi, The main issues outstanding I see: My finding using Windows 8.1 / HP Color LaserJet 6030 MFP PS Class Driver is that the default paper size is B5 (instead of letter/A4) and it simply does not print (using A4), although the code calling EndPage/EndDoc is executed. Friedemann --

Re: [Development] ActiveQt AxServer with CMake

2014-02-12 Thread Robert Knight
Has anyone managed to create an ActiveQt server with CMake? To clarify, is the problem with running the IDC/IDL tools or some other step? The CMake logic we've used for this is roughly: set(IDL_COMMANDS COMMAND idl ${BINARY_PATH} -idl ${BINARY_PATH}.idl COMMAND midl ${BINARY_PATH}.idl

Re: [Development] websockets (was RE: Qt 5.3 Feature freeze is coming quite soon...)

2014-02-12 Thread Richard Moore
On 12 February 2014 14:44, Konrad Rosenbaum kon...@silmor.de wrote: On Wednesday, Wednesday 12 February 2014 at 08:01, Kurt Pattyn wrote: On 11 Feb 2014, at 19:14, Thiago Macieira thiago.macie...@intel.com wrote: Em ter 11 fev 2014, às 16:26:44, Tony Van Eerd escreveu:

Re: [Development] Qt Quick Controls Calendar

2014-02-12 Thread Mark Gaiser
On Wed, Feb 12, 2014 at 2:12 PM, Mitch Curtis mitch.cur...@digia.com wrote: On 01/17/2014 05:34 PM, Mitch Curtis wrote: On 12/06/2013 02:02 PM, Mitch Curtis wrote: Hello. At the beginning of this year I started work on a Calendar for Qt Quick Controls as a sort of side project. After

Re: [Development] Plans for printing in 5.3 onwards

2014-02-12 Thread Shaw Andy
* Keep the patches switching to the new platform plugin code in reserve to either switch for 5.3 if testing proves the plugin is stable enough, or more likely to use in 5.4 if not. I like this idea at least, because this enables the reviews to keep going and we can keep testing until we are

Re: [Development] [Interest] Fastest Way to convert a QVideoFrame to an QImage?

2014-02-12 Thread Thiago Macieira
Em qua 12 fev 2014, às 09:55:09, Jason H escreveu: Well Qt does NOT support grayscale. None of the QImage::Formats are gray. It's either mono, indexed color or color bits. Which is why I'm a but unsure of what is faster. I would assume setting a pixel on Indexed 8, would take a RGB or index

Re: [Development] i.MX6 zero copy video playback

2014-02-12 Thread Pau Garcia i Quiles
Hello, Great! On Wed, Feb 12, 2014 at 10:43 AM, Thomas Senyk thomas.se...@pelagicore.comwrote: Hi, I finally got around to polish and upstream zero copy video playback for the i.MX6. The change: https://codereview.qt-project.org/#change,76764 A video showcasing the functionality: