diff options
| author | Jules Blok <jules.blok@gmail.com> | 2017-07-06 01:26:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-06 01:26:06 +0200 |
| commit | 29cc009706f133aac39ebaa7003d37555b926109 (patch) | |
| tree | e95a51c7ea5abd471be45e00c98f11b308c21537 /Source/Core/Common/GL/GLInterface/BGL.cpp | |
| parent | 421a2c57761d4f51f8bcaf866e17a8c8b38b4cd2 (diff) | |
| parent | 8476d0271d56ef2d49657d31d97d42395585ad3b (diff) | |
Merge pull request #5697 from Armada651/quad-buffer
Implement Quad-Buffered stereoscopy support
Diffstat (limited to 'Source/Core/Common/GL/GLInterface/BGL.cpp')
| -rw-r--r-- | Source/Core/Common/GL/GLInterface/BGL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/GL/GLInterface/BGL.cpp b/Source/Core/Common/GL/GLInterface/BGL.cpp index 7cc9070a49..ed2670efc5 100644 --- a/Source/Core/Common/GL/GLInterface/BGL.cpp +++ b/Source/Core/Common/GL/GLInterface/BGL.cpp @@ -13,7 +13,7 @@ void cInterfaceBGL::Swap() m_gl->SwapBuffers(); } -bool cInterfaceBGL::Create(void* window_handle, bool core) +bool cInterfaceBGL::Create(void* window_handle, bool stereo, bool core) { m_window = static_cast<BWindow*>(window_handle); |
