This basically reverts a2b5b5c8f6.
The global thread pool is also available to the user and by changing
the max thread count to something lower than the default, already
running threads get stopped, which can cause segfaults.
Pick-to: 5.15 6.2 6.3 6.4
Fixes: QTBUG-104593
Change-Id: I21fea3137ea72b3336bc67499f9ee2f846e18845
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Allows to then use the handle with a 3rd party external renderer
(e.g QtQuick with QQuickWindowPrivate::createTextureFromNativeTexture).
Note: we need to be careful and only set the handles once we know the internal
QRhiTextures aren't modified anymore. This means we can only do it after
having created/updated the textures and the render targets as the render
target creation might result in some QRhiTextures being recreated.
Pick-to: 6.4
Change-Id: I7e85fd2661cf935368ee55dc2ebd240bbda38a6f
Reviewed-by: Mike Krus <mike.krus@kdab.com>
Fixes a build error for me with upcoming changes:
qmetatype.h:2350:65: error: no matching function for call to ‘tst_Matrix4x4_AVX2::operator new(sizetype, void*&)’
Change-Id: I36b24183fbd041179f2ffffd17026a5a0a10f312
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Since implementation was removed in Qt 6.
Pick-to: 6.4 6.3 6.2
Change-Id: Ia2ca6a88bdb7d4fd02801ce8fac99cda3f39d102
Reviewed-by: Mike Krus <mike.krus@kdab.com>
The name of Property is OrbitCameraController::zoomInLimit.
Pick-to: 6.4 6.3 6.2
Change-Id: Id28e5a2dbc8b67ff5fc6e69fdddfc1f4ca03df42
Reviewed-by: Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
The name of Property is BlendEquationArguments::destinationAlpha.
Pick-to: 6.4 6.3 6.2
Change-Id: I6fdd1bd2ae4293706dcffe3fbce01bd93763097a
Reviewed-by: Tasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
The member operators weren't const, leading them to be ambiguous with
their reversed versions.
Fix by adding a private equals() function (to avoid churning the
implementation) and making the relational operators hidden friends.
Pick-to: 6.4 6.3 6.2 5.15
Task-number: QTBUG-104172
Change-Id: I97e74ef26fc2712d6f97c8f7d7bd61d6a625b42e
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
C++20 deprecated the implicit capture of [this] in [=].
Move Q_D()s into the lambdas, where applicable.
Pick-to: 6.4 6.3 6.2 5.15
Change-Id: I345658b0ab9c4edc070f6fd111fce135dd757b14
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Rather than QThread::idealThreadCount which isn't cached and could potentially
return different values over time unlike QAspectManager::idealThreadCount
which is cached and constant.
Pick-to: 6.4 6.3 6.2 5.15
Change-Id: Icb5fa81c93aa95af7bf020739bfefdf7e298f986
Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
CMakeLists.txt and .cmake files of significant size
(more than 2 lines according to our check in tst_license.pl)
now have the copyright and license header.
Existing copyright statements remain intact
Task-number: QTBUG-88621
Change-Id: I141f5077ae0c11e1058de64d573ca33e2a308ccd
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
m_pendingRenderCaptureSendRequests is touched by different threads
from Renderer::jobsDone and Renderer::executeCommandsSubmission.
It causes Assert and crashes and shuould be protected with mutex.
Task-number: QTBUG-104592
Pick-to: 6.2 6.3 6.4
Change-Id: I489691caeba2772f544fe1e4716053caf9492696
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Add rhirenderetarget* files to pri file.
These were added int the commit 0b36fd620f
Pick-to: 6.2 6.3 6.4
Change-Id: Ibee9da40dbee18467e1d4c60429f46155ded859d
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Rhi::Renderer frees the memory referenced by QImage immediately after generating QImage.
This memory should not be freed during using QImage.
Task-number: QTBUG-104534
Pick-to: 6.2 6.3 6.4
Change-Id: Ib17c91c1e87d7544d1bf9a836f554f351c0b3968
Reviewed-by: Mike Krus <mike.krus@kdab.com>
The local variable image is unused and has a duplicate name with the variable in the next lower scope.
Pick-to: 6.2 6.3 6.4
Change-Id: I2154042e8737b4dc53f2d4b3b47dd9ed292b9dec
Reviewed-by: Mike Krus <mike.krus@kdab.com>
quick3d already defines a scene3d resource file, static build
generates some symbols to load these.
Avoid clash in symbol names by rename resource file here.
Task-number: QTBUG-102883
Pick-to: 6.3
Change-Id: I962c1a62e4a4379e4ccf0ac5d29383dc551ec8ec
Reviewed-by: Paul Lemire <paul.lemire@kdab.com>