Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libraries/qml/src/qml/impl/RenderEventHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ void RenderEventHandler::qmlRender(bool sceneGraphSync) {
{
// Serialize QML rendering because of a crash caused by Qt bug
// https://bugreports.qt.io/browse/QTBUG-77469
static std::mutex qmlRenderMutex;
std::unique_lock<std::mutex> qmlRenderLock{ qmlRenderMutex };
//static std::mutex qmlRenderMutex;
//std::unique_lock<std::mutex> qmlRenderLock{ qmlRenderMutex };
_shared->_renderControl->render();
}
}
Expand Down
Loading