diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-09-13 08:23:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 08:23:16 +0200 |
commit | 0b716fdb31f1780b541cbda862f2319a78be55ee (patch) | |
tree | 738d6fa2ce8f142e8d4afe484a4da2160494e453 /platform/windows/gl_manager_windows.cpp | |
parent | 6a8b2a4210d424935aeac14bc70c105601823549 (diff) | |
parent | 96b7cb66df340e7f2ab379c7eefd29d74ea9e3a9 (diff) |
Merge pull request #65727 from clayjohn/GLES3-multiwindow
Fix multiwindow support in GLES3 for X11, Windows, and MacOS.
Diffstat (limited to 'platform/windows/gl_manager_windows.cpp')
-rw-r--r-- | platform/windows/gl_manager_windows.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/platform/windows/gl_manager_windows.cpp b/platform/windows/gl_manager_windows.cpp index d509ff8c51..7689751f1b 100644 --- a/platform/windows/gl_manager_windows.cpp +++ b/platform/windows/gl_manager_windows.cpp @@ -289,12 +289,7 @@ void GLManager_Windows::make_current() { } void GLManager_Windows::swap_buffers() { - // on other platforms, OpenGL swaps buffers for all windows (on all displays, really?) - // Windows swaps buffers on a per-window basis - // REVISIT: this could be structurally bad, should we have "dirty" flags then? - for (KeyValue<DisplayServer::WindowID, GLWindow> &entry : _windows) { - SwapBuffers(entry.value.hDC); - } + SwapBuffers(_current_window->hDC); } Error GLManager_Windows::initialize() { |