diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2022-12-13 20:39:03 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-13 21:01:51 +0100 |
commit | 09e3029c1118616394e5e9c45dfcdd4adcdf86ad (patch) | |
tree | 652f0490e20ecd253171c43cc7a9271712793be5 /src/core | |
parent | OpenGL: Check for threading support (diff) | |
download | yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar.gz yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar.bz2 yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar.lz yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar.xz yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.tar.zst yuzu-09e3029c1118616394e5e9c45dfcdd4adcdf86ad.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/frontend/emu_window.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h index 95363b645..cf85ba29e 100644 --- a/src/core/frontend/emu_window.h +++ b/src/core/frontend/emu_window.h @@ -131,6 +131,10 @@ public: return active_config; } + bool StrictContextRequired() const { + return strict_context_required; + } + /** * Requests the internal configuration to be replaced by the specified argument at some point in * the future. @@ -207,6 +211,8 @@ protected: WindowSystemInfo window_info; + bool strict_context_required = false; + private: /** * Handler called when the minimal client area was requested to be changed via SetConfig. |