diff options
| author | Halldor Fannar <[email protected]> | 2017-05-10 14:16:54 +0000 |
|---|---|---|
| committer | Halldor Fannar <[email protected]> | 2017-05-10 14:16:54 +0000 |
| commit | 4dcef16c230d27a841b28d9e669cfbd903ed8e0b (patch) | |
| tree | 4ccd79a3f146f6ba58d6fce2cb8291722433fc12 /include/ansel/Configuration.h | |
| parent | Updating AnselSDK binaries - fixing getUserControlValue implementation (diff) | |
| download | anselsdk-4dcef16c230d27a841b28d9e669cfbd903ed8e0b.tar.xz anselsdk-4dcef16c230d27a841b28d9e669cfbd903ed8e0b.zip | |
Updating SDK to fix documentation generation issue.
Diffstat (limited to 'include/ansel/Configuration.h')
| -rw-r--r-- | include/ansel/Configuration.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/ansel/Configuration.h b/include/ansel/Configuration.h index c3cf9c9..742ba10 100644 --- a/include/ansel/Configuration.h +++ b/include/ansel/Configuration.h @@ -126,8 +126,9 @@ namespace ansel // Handy to enable those fullscreen effects that were disabled by startCaptureCallback. // This callback is optional (leave nullptr if not needed) StopCaptureCallback stopCaptureCallback; - // Integration allows a filter/effect to remain active when the Ansel session is not active - bool isFilterOutsideSessionAllowed; + // The 'isFilterOutsideSessionAllowed' setting has been phased out in version 1.3 of the + // SDK. This feature was only temporarily supported and no games took advantage of it. + bool unused2; // The 'isExrSupported' setting has been phased out in version 1.1 of the SDK. Use // 'isRawAllowed' setting in SessionConfiguration to enable/disable captures into EXR // format. @@ -163,7 +164,7 @@ namespace ansel stopSessionCallback = nullptr; startCaptureCallback = nullptr; stopCaptureCallback = nullptr; - isFilterOutsideSessionAllowed = true; + unused2 = true; unused1 = false; sdkVersion = ANSEL_SDK_VERSION; } |