Fix(DOtherSide): Exclude threaded renderer all darwin architectures (#10411)
This commit is contained in:
parent
5ca5882a03
commit
3ce7171b71
|
@ -193,7 +193,7 @@ void dos_qguiapplication_initialize_opengl()
|
||||||
|
|
||||||
void dos_qguiapplication_try_enable_threaded_renderer()
|
void dos_qguiapplication_try_enable_threaded_renderer()
|
||||||
{
|
{
|
||||||
if(QSysInfo::buildCpuArchitecture() == "arm64" && QSysInfo::kernelType() == "darwin" && QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
if(QSysInfo::kernelType() == "darwin" && QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
||||||
{
|
{
|
||||||
//Threaded renderer is crashing on M1 Macs
|
//Threaded renderer is crashing on M1 Macs
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue