diff options
| author | Dmitry Duka <[email protected]> | 2017-12-25 16:33:19 +0300 |
|---|---|---|
| committer | Dmitry Duka <[email protected]> | 2017-12-25 16:33:19 +0300 |
| commit | 9a3873353d4828cfdb6cca813dbb0f27f0e4f325 (patch) | |
| tree | 29a64ad93240728e990f4c298a09dbcb5e394ba7 /include/ansel | |
| parent | Merge branch 'master' of https://github.com/NVIDIAGameWorks/AnselSDK (diff) | |
| download | anselsdk-9a3873353d4828cfdb6cca813dbb0f27f0e4f325.tar.xz anselsdk-9a3873353d4828cfdb6cca813dbb0f27f0e4f325.zip | |
Updating Ansel SDK 1.5, no functional changes. Fixing startSession/stopSession not being exported.
Diffstat (limited to 'include/ansel')
| -rw-r--r-- | include/ansel/Hints.h | 2 | ||||
| -rw-r--r-- | include/ansel/Version.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/ansel/Hints.h b/include/ansel/Hints.h index 0ab298b..b1c1d05 100644 --- a/include/ansel/Hints.h +++ b/include/ansel/Hints.h @@ -36,7 +36,7 @@ namespace ansel kBufferTypeHDR = 0,
kBufferTypeDepth,
kBufferTypeHUDless,
- kBufferTypePresentable,
+ kBufferTypeFinalColor,
kBufferTypeCount
};
diff --git a/include/ansel/Version.h b/include/ansel/Version.h index 738ff05..fd51d11 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 371
-#define ANSEL_SDK_COMMIT_HASH 0x6b5f6534
+#define ANSEL_SDK_BUILD_NUMBER 396
+#define ANSEL_SDK_COMMIT_HASH 0xceef6868
#define ANSEL_SDK_VERSION ( uint64_t(ANSEL_SDK_PRODUCT_VERSION_MAJOR) << 48 | uint64_t(ANSEL_SDK_PRODUCT_VERSION_MINOR) << 32 \
| ANSEL_SDK_COMMIT_HASH )
|