diff options
| author | Halldor Fannar <[email protected]> | 2017-05-10 15:26:14 +0000 |
|---|---|---|
| committer | Halldor Fannar <[email protected]> | 2017-05-10 15:26:14 +0000 |
| commit | 401aca3c5c85517a6213126d42cdbdb7e390a4fa (patch) | |
| tree | 097df3e67a224d4ed79619509426edc5f28cca97 /include | |
| parent | Updating AnselSDK binaries - fixing getUserControlValue implementation (diff) | |
| parent | Updating SDK to fix documentation generation issue. (diff) | |
| download | anselsdk-1.3.271.tar.xz anselsdk-1.3.271.zip | |
Diffstat (limited to 'include')
| -rw-r--r-- | include/ansel/Configuration.h | 7 | ||||
| -rw-r--r-- | include/ansel/Version.h | 4 |
2 files changed, 6 insertions, 5 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; } diff --git a/include/ansel/Version.h b/include/ansel/Version.h index 4445906..fd8481d 100644 --- a/include/ansel/Version.h +++ b/include/ansel/Version.h @@ -45,8 +45,8 @@ // The BUILD_NUMBER and COMMIT_HASH are useful in uniquely identifying a build of the Ansel SDK. // Changes to the customer facing API can be tracked with these since they are automatically // updated every time a change is made. -#define ANSEL_SDK_BUILD_NUMBER 264 -#define ANSEL_SDK_COMMIT_HASH 0xcda18cd2 +#define ANSEL_SDK_BUILD_NUMBER 271 +#define ANSEL_SDK_COMMIT_HASH 0xe8aa77f3 #define ANSEL_SDK_VERSION ( uint64_t(ANSEL_SDK_PRODUCT_VERSION_MAJOR) << 48 | uint64_t(ANSEL_SDK_PRODUCT_VERSION_MINOR) << 32 \ | ANSEL_SDK_COMMIT_HASH ) |