diff options
| author | Dmitry Duka <[email protected]> | 2017-04-10 17:42:41 +0300 |
|---|---|---|
| committer | Dmitry Duka <[email protected]> | 2017-04-10 17:42:41 +0300 |
| commit | 3e4fb922fbc32d3bde5b5b23094df1c3a011a290 (patch) | |
| tree | 898b1c456fff8ab51bd57e924466775a7f18091f /include | |
| parent | Pulling master to the latest 1.2 (diff) | |
| download | anselsdk-3e4fb922fbc32d3bde5b5b23094df1c3a011a290.tar.xz anselsdk-3e4fb922fbc32d3bde5b5b23094df1c3a011a290.zip | |
Updating Ansel SDK to 1.3
Diffstat (limited to 'include')
| -rw-r--r-- | include/ansel/Session.h | 4 | ||||
| -rw-r--r-- | include/ansel/Version.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/include/ansel/Session.h b/include/ansel/Session.h index 0897045..e9dd9c7 100644 --- a/include/ansel/Session.h +++ b/include/ansel/Session.h @@ -52,6 +52,9 @@ namespace ansel float translationalSpeedInWorldUnitsPerSecond; // The speed at which camera rotates, initialized with a value given in Configuration float rotationalSpeedInDegreesPerSecond; + // The maximum FoV value in degrees displayed in the Ansel UI. + // Any value in the range [140, 179] can be specified and values outside will be clamped to this range. + float maximumFovInDegrees; SessionConfiguration() { @@ -63,6 +66,7 @@ namespace ansel is360MonoAllowed = true; is360StereoAllowed = true; isRawAllowed = true; + maximumFovInDegrees = 140.0f; } }; diff --git a/include/ansel/Version.h b/include/ansel/Version.h index fa7623e..9659db9 100644 --- a/include/ansel/Version.h +++ b/include/ansel/Version.h @@ -38,15 +38,15 @@ // MINIMUM_DRIVER_VERSION as well. While a public driver hasn't been finalized use our internal // release tags to identify it (like 378.GA2). #define ANSEL_SDK_PRODUCT_VERSION_MAJOR 1 -#define ANSEL_SDK_PRODUCT_VERSION_MINOR 2 -#define ANSEL_SDK_MINIMUM_DRIVER_VERSION "378.78" +#define ANSEL_SDK_PRODUCT_VERSION_MINOR 3 +#define ANSEL_SDK_MINIMUM_DRIVER_VERSION "381.65" // The lines below are automatically updated by build agents. Please don't touch. // 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 220 -#define ANSEL_SDK_COMMIT_HASH 0x9d1f1b9d +#define ANSEL_SDK_BUILD_NUMBER 258 +#define ANSEL_SDK_COMMIT_HASH 0xc61a3490 #define ANSEL_SDK_VERSION ( uint64_t(ANSEL_SDK_PRODUCT_VERSION_MAJOR) << 48 | uint64_t(ANSEL_SDK_PRODUCT_VERSION_MINOR) << 32 \ | ANSEL_SDK_COMMIT_HASH ) |