mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
bootmanager: set the surface format based on vsync
This commit is contained in:
parent
5c50a26b38
commit
b4ef3cdeff
@ -162,7 +162,7 @@ public:
|
||||
|
||||
// disable vsync for any shared contexts
|
||||
auto format = share_context->format();
|
||||
format.setSwapInterval(main_surface ? Settings::values.use_vsync_new.GetValue() : 0);
|
||||
format.setSwapInterval(0);
|
||||
|
||||
context = std::make_unique<QOpenGLContext>();
|
||||
context->setShareContext(share_context);
|
||||
@ -673,6 +673,10 @@ bool GRenderWindow::InitializeOpenGL() {
|
||||
auto child_context = CreateSharedContext();
|
||||
child->SetContext(std::move(child_context));
|
||||
|
||||
auto format = child_widget->windowHandle()->format();
|
||||
format.setSwapInterval(Settings::values.use_vsync_new.GetValue());
|
||||
child_widget->windowHandle()->setFormat(format);
|
||||
|
||||
return true;
|
||||
#else
|
||||
QMessageBox::warning(this, tr("OpenGL not available!"),
|
||||
|
Loading…
Reference in New Issue
Block a user