diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2021-11-17 17:51:50 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2021-11-17 17:51:50 +0200 |
commit | fdeeb0190eb6fa2d6b39816d14a664f5d38aa4ec (patch) | |
tree | fc8f807b4e1ad7e74a14d5989c9bf89cb9e194e1 /indra/llwindow/llwindow.h | |
parent | 4745aab37647956cf92e760df525d5fe64f47908 (diff) |
SL-16330 Allow vsync update without restart on mac
Diffstat (limited to 'indra/llwindow/llwindow.h')
-rw-r--r-- | indra/llwindow/llwindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindow.h b/indra/llwindow/llwindow.h index 43d81e4d59..0edf39f6ef 100644 --- a/indra/llwindow/llwindow.h +++ b/indra/llwindow/llwindow.h @@ -88,11 +88,11 @@ public: //Must be called on the same thread that called createSharedContext() virtual void destroySharedContext(void* context) = 0; + virtual void toggleVSync(bool enable_vsync) = 0; virtual BOOL setCursorPosition(LLCoordWindow position) = 0; virtual BOOL getCursorPosition(LLCoordWindow *position) = 0; #if LL_WINDOWS - virtual void toggleVSync(bool enable_vsync) = 0; virtual BOOL getCursorDelta(LLCoordCommon* delta) = 0; #endif virtual void showCursor() = 0; |