mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
[Qt] Make null renderer create a GL context for vsync purposes
This commit is contained in:
parent
5155682e0f
commit
27a04a806e
1 changed files with 2 additions and 2 deletions
|
@ -32,14 +32,14 @@ MainWindow::MainWindow(QApplication* app, QWidget* parent) : QMainWindow(parent)
|
|||
emuThread = std::thread([&]() {
|
||||
const RendererType rendererType = emu->getConfig().rendererType;
|
||||
|
||||
if (rendererType == RendererType::OpenGL || rendererType == RendererType::Software) {
|
||||
if (rendererType == RendererType::OpenGL || rendererType == RendererType::Software || rendererType == RendererType::Null) {
|
||||
// Make GL context current for this thread, enable VSync
|
||||
GL::Context* glContext = screen.getGLContext();
|
||||
glContext->MakeCurrent();
|
||||
glContext->SetSwapInterval(1);
|
||||
|
||||
emu->initGraphicsContext(glContext);
|
||||
} else if (rendererType != RendererType::Null) {
|
||||
} else {
|
||||
Helpers::panic("Unsupported renderer type for the Qt backend! Vulkan on Qt is currently WIP, try the SDL frontend instead!");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue