mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-04-03 12:49:04 +00:00
Enforce renderer to opengl if virtualbox 3D acceleration is detected
This commit is contained in:
parent
47f0047c9f
commit
403759bc83
3 changed files with 66 additions and 2 deletions
src
|
@ -68,6 +68,7 @@
|
|||
#include "qt/updater.h"
|
||||
#include "qt/utils.h"
|
||||
#include "qt/TailsOS.h"
|
||||
#include "qt/VirtualBox.h"
|
||||
#include "qt/KeysFiles.h"
|
||||
#include "qt/MoneroSettings.h"
|
||||
#include "qt/NetworkAccessBlockingFactory.h"
|
||||
|
@ -156,6 +157,8 @@ bool isLinux = false;
|
|||
bool isTails = false;
|
||||
bool isDesktop = false;
|
||||
bool isOpenGL = true;
|
||||
bool isVirtualBox = false;
|
||||
bool isHardwareAccelerationEnabled = false;
|
||||
bool isARM = false;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
|
@ -175,6 +178,8 @@ int main(int argc, char *argv[])
|
|||
#elif defined(Q_OS_LINUX)
|
||||
bool isLinux = true;
|
||||
bool isTails = TailsOS::detect();
|
||||
bool isVirtualBox = VirtualBox::detect();
|
||||
bool isHardwareAccelerationEnabled = isVirtualBox ? VirtualBox::detect3DAcceleration() : false;
|
||||
#elif defined(Q_OS_MAC)
|
||||
bool isMac = true;
|
||||
#endif
|
||||
|
@ -183,8 +188,17 @@ int main(int argc, char *argv[])
|
|||
#endif
|
||||
|
||||
// detect low graphics mode (start-low-graphics-mode.bat)
|
||||
if(qgetenv("QMLSCENE_DEVICE") == "softwarecontext")
|
||||
isOpenGL = false;
|
||||
if(qgetenv("QMLSCENE_DEVICE") == "softwarecontext") {
|
||||
// enforce opengl renderer if hardware acceleration is enabled
|
||||
if (isVirtualBox && isHardwareAccelerationEnabled) {
|
||||
qDebug() << "Enforcing render to opengl";
|
||||
qputenv("QMLSCENE_DEVICE", "opengl");
|
||||
}
|
||||
else {
|
||||
isOpenGL = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#ifdef Q_OS_MAC
|
||||
// macOS window tabbing is not supported
|
||||
|
|
35
src/qt/VirtualBox.cpp
Normal file
35
src/qt/VirtualBox.cpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
#include "VirtualBox.h"
|
||||
#include <QProcess>
|
||||
|
||||
bool VirtualBox::detect() {
|
||||
QProcess process;
|
||||
process.start("systemd-detect-virt", QStringList());
|
||||
process.waitForFinished();
|
||||
|
||||
QString output = process.readAllStandardOutput().trimmed();
|
||||
bool found = output == "oracle";
|
||||
|
||||
#ifdef QT_DEBUG
|
||||
if (found)
|
||||
qDebug() << "VirtualBox VM detected";
|
||||
#endif
|
||||
|
||||
return found;
|
||||
}
|
||||
|
||||
bool VirtualBox::detect3DAcceleration() {
|
||||
if (!detect()) return false;
|
||||
|
||||
QProcess process;
|
||||
process.start("sh", QStringList() << "-c" << "glxinfo | grep 'OpenGL renderer'");
|
||||
process.waitForFinished();
|
||||
|
||||
bool found = process.readAllStandardOutput().trimmed().contains("SVGA3D");
|
||||
|
||||
#ifdef QT_DEBUG
|
||||
if (found)
|
||||
qDebug() << "VirtualBox 3D acceleration detected";
|
||||
#endif
|
||||
|
||||
return found;
|
||||
}
|
15
src/qt/VirtualBox.h
Normal file
15
src/qt/VirtualBox.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef VIRTUALBOX_H
|
||||
#define VIRTUALBOX_H
|
||||
|
||||
#include <QApplication>
|
||||
|
||||
|
||||
class VirtualBox
|
||||
{
|
||||
public:
|
||||
VirtualBox();
|
||||
static bool detect();
|
||||
static bool detect3DAcceleration();
|
||||
};
|
||||
|
||||
#endif // VIRTUALBOX_H
|
Loading…
Reference in a new issue