Skip to content

Commit

Permalink
Fix the 'borderless fullscreen' option #2864
Browse files Browse the repository at this point in the history
  • Loading branch information
gonetz committed Sep 2, 2024
1 parent 89b06f8 commit 7294f02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Graphics/OpenGLContext/windows/WindowsWGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ bool WindowsWGL::start()
1, // version number
PFD_DRAW_TO_WINDOW | // support window
PFD_SUPPORT_OPENGL | // support OpenGL
PFD_DOUBLEBUFFER, // double buffered
PFD_DOUBLEBUFFER | // double buffered
PFD_SUPPORT_COMPOSITION, // composition support, see https://www.opengl.org/pipeline/article/vol003_7/
PFD_TYPE_RGBA, // RGBA type
32, // color depth
0, 0, 0, 0, 0, 0, // color bits ignored
Expand Down

0 comments on commit 7294f02

Please sign in to comment.