- 20 May, 2019 - 1 commit
-
-
Antti Kokko authored
Edited-By:
Thiago Macieira <thiago.macieira@intel.com> Change-Id: I9d681de1716965342fb1635c8d018dde22fe2c98 Reviewed-by:
Edward Welbourne <edward.welbourne@qt.io> Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
- 22 May, 2019 - 1 commit
-
-
Joerg Bornemann authored
The regular expression with the alternative is not portable. Use a separate QMAKE_PRL_INSTALL_REPLACE item. This amends commit f00de332 . Fixes: QTBUG-75950 Change-Id: I78e172053f8b05be7d595a1c9e1695ea658b0547 Reviewed-by:
Iikka Eklund <iikka.eklund@qt.io> Reviewed-by:
Oliver Wolff <oliver.wolff@qt.io>
-
- 20 May, 2019 - 1 commit
-
-
Joerg Bornemann authored
In the case of building a Qt module repository against an installed qtbase the .prl files contain absolute paths to Qt dependencies e.g. '/install-prefix/lib/libQt5Core.so'. Those must be replaced with $$[QT_INSTALL_PREFIX]. The .prl replacement code however only takes $$MODULE_BASE_OUTDIR/lib into account. Fixes: QTBUG-75804 Change-Id: I5ea5623ca7396b672fded3f1b9434b9ad5ed12ec Reviewed-by:
Oliver Wolff <oliver.wolff@qt.io>
-
- 09 May, 2019 - 1 commit
-
-
Christian Ehrlicher authored
QT_DEPRECATED_X() was not added with d6d33f0b for the deprecated QComboBox functions - Add them now. Change-Id: I8d4ea08766ae6ff052dfccac6c3f35ecf34affb7 Reviewed-by:
Richard Moe Gustavsen <richard.gustavsen@qt.io>
-
- 14 May, 2019 - 8 commits
-
-
Eskil Abrahamsen Blomfeldt authored
This reverts commit fc3e8514 . The patch introduces a crash in Qt Quick in the test tst_QQuickWindow::multipleWindows() on macOS 10.12. Reverting this will cause dead locks on older macOS versions for users who opt in to using layer backed mode, so we should bring this back as soon as a fix can be found for the crash. But in order to proceed with qt5.git integration, we revert it for now. Task-number: QTBUG-75782 Change-Id: I57f6b2918c3fc4b4e58a8c39b24a19e2d796a4f4 Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@qt.io>
-
Morten Johan Sørvig authored
Required by QWasmOpenGLContext. Task-number: QTBUG-75463 Change-Id: Ie3cb80b50d7c909e6f46a6dec19644bf27cd41e7 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
We don’t need the contextLost callback since we can poll for the “lost” status in isValid() Recreating the native context is not very helpful, since it destroys all current context state. Remove this logic. Support makeCurrent() on different surfaces, as long as they refer to the same screen. Create the native context (and record which screen) on the first call to makeCurrent() Task-number: QTBUG-75463 Change-Id: I6eb830df14578ffdbed5b0505fe860ce433e4f9b Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
Freeing OpenGL resources requires a current context, which (on wasm) requires a screen. Add a destroy() functions to QWasmScreen, QWasmCompositor, QWasmWindow, and QWasmBackingStore which facilitates OpenGL cleanup before we start deleting screen objects. Task-number: QTBUG-75463 Change-Id: I9954b536416b9147965c74459ccad838d1578778 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
This no-op implementation is sufficient to support OpenGL cleanup use cases, where the OpenGL context needs to be made current at times where we don't have a window available. A specific requirement on WebAssembly is that the context is tied to one specific screen; which is an extra requirement on QWasmOffscreenSurface, compared to the other platforms. Task-number: QTBUG-75463 Change-Id: Ie3658cb235bf342be66f19dfe981e3a56a90e1b6 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
The target position is the position on the canvas, not the global position on the page. Task-number: QTBUG-75463 Change-Id: I4ea2c9afacd2065fa975f6fa2e6a93d98f637854 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
We can get draw calls in between creating the platform window and the platform backing store. Task-number: QTBUG-75463 Change-Id: If0b67d40fac84e466f204ec23a267aa4c6121cbd Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Morten Johan Sørvig authored
Install one browser window resize handler instead of per-canvas resize handlers, which avoids having to uninstall on QScreen destruction. Task-number: QTBUG-75463 Change-Id: I8345262a906ed735f8e9e146f1e963f515cf0d25 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
- 13 May, 2019 - 2 commits
-
-
Kai Koehne authored
qmake automatically appends a dir_sep to a few directory paths (see MakefileGenerator::initOutPaths), and various .pri and .prf files rely on that. Anyhow, for non-MSys MinGW on Windows this creates a problem, because mingw32-make will interpret the backslash in OBJECTS_DIR = some_path\ to escape the following newline. We have been working around this problem in various ways: - winmakefile.cpp just removes the trailing \ for OBJECTS_DIR, at the cost of not being compatible with logic in .prf/.pri files that rely on the separator. - winmakefile.cpp adds a '#avoid trailing-slash linebreak' comment for DESTDIR. Anyhow, this does not seem to work for mingw32-make: If you reference $(DESTDIR), the variable will contain trailing spaces. - unixmakefile2.cpp duplicates a trailing \ for DESTDIR. The last approach is now taken also for OBJECTS_DIR. Task-number: QTBUG-75257 Change-Id: Ie8171a990a9ce1cfbf1b94037252ef2392313338 Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io>
-
Kai Koehne authored
If qmake is called without sh.exe in PATH, the relative paths in OBJECTS will contain backslashes as separator. Anyhow, emar needs forward slashes. Use GNU make's subst command to fix this. This amends 22c1e10e . Task-number: QTBUG-75257 Change-Id: Iacc6fe69cf470f35c6ddd829be7a80944346452d Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io>
-
- 08 May, 2019 - 3 commits
-
-
Morten Johan Sørvig authored
We can’t determine when the app will use layer-backed views without having access to the QWindow and NSView instance, so make the conservative choice of always returning false for ThreadedOpenGL. Task-number: QTBUG-74820 Change-Id: If2779b17eead78ce1929ccebc3bd8fc0eb00c4b5 Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@qt.io>
-
Morten Johan Sørvig authored
navigator.hardwareConcurrency can be accessed from the main thread only. Read and cache the value on QCoreApplication initialization. Change-Id: I731f7f356ce106c7107977783d4b763326af06b6 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
BogDan Vatra authored
x86_64 libs are located in ANDROID_PLATFORM_ROOT_PATH/usr/lib64 not in ANDROID_PLATFORM_ROOT_PATH/usr/lib . Fixes: QTBUG-47672 Change-Id: Ia1f74f7c2a30b276b95fd0e7dcf8370d739e3c41 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> (cherry picked from commit 43763e27 ) Reviewed-by:
Jani Heikkinen <jani.heikkinen@qt.io>
-
- 07 May, 2019 - 4 commits
-
-
Morten Johan Sørvig authored
Change-Id: Ic9812421b2a79a33bb138f448fe132dab141b724 Reviewed-by:
Lorn Potter <lorn.potter@gmail.com>
-
Frederik Gladhorn authored
Change-Id: I98e2b93d78dba1cbf746c39a0b5877d5e72c91fc
-
Andy Shaw authored
Fixes: QTBUG-75333 Change-Id: Iaaf4b13d50c6b9b52e629b81d5e9cbc552a0202c Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Lorn Potter authored
Also define our default font so as to return something we actually have Task-number: QTBUG-75587 Change-Id: I26e3c62921d369c3017af9796c0a20f7ac06d07c Reviewed-by:
Shawn Rutledge <shawn.rutledge@qt.io>
-
- 06 May, 2019 - 3 commits
-
-
Karim Pinter authored
Adding xcb_flush after xcb_bell makes it work, no need to move the mouse. Fixes: QTBUG-75617 Change-Id: Ieeb47468bf31cfa6fcf2d48da56d54b9e6eac6fe Reviewed-by:
Gatis Paeglis <gatis.paeglis@qt.io>
-
Lorn Potter authored
Task-number: QTBUG-75530 Change-Id: Ic0f0bd8ce863f55d737d96bbf9e5473466381c9b Reviewed-by:
Morten Johan Sørvig <morten.sorvig@qt.io>
-
BogDan Vatra authored
Mips archs were removed from Android NDK long time ago. Change-Id: Icf64a1e2cfbe3fe7307c7898b14fd199d9eeaad3 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
-
- 05 May, 2019 - 5 commits
-
-
Qt Forward Merge Bot authored
Change-Id: Iaad9509712c848ed42ada2c25065162a6fc5a930
-
Mikhail Svetkin authored
Qt starts drag-and-drop on a mouse button press event. Cococa in this case won't send the matching release event, so we have to synthesize it here. Task-number: QTBUG-72417 Change-Id: I645b6a2733c1ea11ac4545cf3405f826af45fa47 Reviewed-by:
Gatis Paeglis <gatis.paeglis@qt.io> Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@qt.io>
-
Joerg Bornemann authored
Do not store this variable locally, because a) it might change if the SDK location changes b) does not play well with Qt installer packages which would provide the include path of the build machine. To achieve this we introduce the (usual) magic value - for QMAKE_EXPORT_INCDIR_VULKAN to denote "do not export this value". Fixes: QTBUG-73796 Change-Id: Ied26ee12cbcdf7f5f6e1caef5d29dadf6309c5d6 Reviewed-by:
Laszlo Agocs <laszlo.agocs@qt.io> Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Nick Shaforostov authored
I was using a cheap usb-stick from ALDI supermarket with fat32, and my application crashed because filesystem was empty. Unrealistic scenario, but still just returning here false is better than a crash Change-Id: I8979d5a4e19ce57770ab03983e847b272ebf7019 Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
Nick Shaforostov authored
Change-Id: Ic1975db497613e3efe50be4246c167efe10d8e31 Reviewed-by:
Morten Johan Sørvig <morten.sorvig@qt.io>
-
- 03 May, 2019 - 8 commits
-
-
Allan Sandfeld Jensen authored
We get a call to storeFont for each supported script-type of a font, but we use the font signature to register all the supported types at once, and can thus save ~3/4 calls to addFontToDatabase. Change-Id: I9d06252fb7f805e7babac58d82fa412ec4e0e36a Fixes: QTBUG-59360 Reviewed-by:
Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
-
Christian Ehrlicher authored
Don't call or implement functions which are not available when compiling with QT_DISABLE_DEPRECATED_BEFORE=0x050d00 Change-Id: I949b12bba880c516391f312f58c8748303a1790d Reviewed-by:
Lars Knoll <lars.knoll@qt.io> Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
Massimo Callegari authored
In Windows there are package-based systems like MSYS2 that provide pkg-config for packages lookup. This change skips autodetection only for MSVC which doesn't provide the aforementioned feature. Task-number: QTBUG-57436 Change-Id: Iaed517e93031adbd2fd9dbf350764f76569b94ea Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Liang Qi authored
-
Liang Qi authored
Conflicts: src/3rdparty/pcre2/qt_attribution.json Change-Id: Ibae941cb12662f27bd6962ee02bc235971c59a15
-
Mitch Curtis authored
This helps debugging import issues, and will produce output like this: Running qmlimportscanner with the following command: /media/dev2/qt5.13-android-x86-debug/qtbase/bin/qmlimportscanner -rootPath /media/dev2/qt5.13/qtquickcontrols2/tests/auto/customization/ -importPath /media/dev2/qt5.13-android-x86-debug/qtbase/qml /media/dev2/qt5.13/qtquickcontrols2/tests/auto/customization/ Task-number: QTBUG-73572 Change-Id: I3c8fe16cb76f1b11913a3b9cc98470f6071438ab Reviewed-by:
Simon Hausmann <simon.hausmann@qt.io>
-
Andy Shaw authored
With some keyboards (ASOP, SwiftKey) it was not deleting any new lines when using backspace. So this ensures that it is correctly deleting at these points. Tested with the Samsung, Gboard and SwiftKey keyboards. Fixes: QTBUG-74824 Fixes: QTBUG-57798 Change-Id: Id2e4f96c18c3fec0e7f444b55dd3db2653625fd0 Done-with: Vova Mshanetskiy <vovams163@gmail.com> Reviewed-by:
Paul Olav Tvete <paul.tvete@qt.io>
-
Christian Kamm authored
Previously there were two issues: - A QNetworkReply could be aborted but be in NoError state. (GOAWAY frame with 0 as error) - Streams in a connection would be aborted prematurely when a GOAWAY frame with a lastStreamId of 2^31-1 was received. Fixes: QTBUG-73947 Change-Id: Iddee9385c1db3cc4bb80e07efac7220fff787bf3 Reviewed-by:
Timur Pocheptsov <timur.pocheptsov@qt.io>
-
- 02 May, 2019 - 3 commits
-
-
Lorn Potter authored
Task-number: QTBUG-74868 Change-Id: Ibbbac1ece66c8978440a282bf6949a82fb64d216 Reviewed-by:
Morten Johan Sørvig <morten.sorvig@qt.io>
-
Andy Shaw authored
Change-Id: Ic23e541e1b12b3c94f8d191cb8fb0f76086b69a5 Reviewed-by:
Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-
Giuseppe D'Angelo authored
In 5.12 only the variadic argument version is left (as all supported compilers have variadic templates). Remove the docs of the nullary overload, and fix the docs for the remaining overload. Change-Id: I54cc7ea71cc61ba1330a9ad92e4fa2ae7f749bac Reviewed-by:
Thiago Macieira <thiago.macieira@intel.com>
-