Update MoltenVK to version 1.1.2.

Update VK_MVK_MOLTENVK_SPEC_VERSION to 30.
Update What's New document.
This commit is contained in:
Bill Hollings 2020-12-26 13:45:10 -05:00
parent b8f044eaaf
commit 94a81177cb
2 changed files with 16 additions and 2 deletions

View File

@ -13,6 +13,20 @@ For best results, use a Markdown reader.*
MoltenVK 1.1.2
--------------
Released TBD
- Support fast math on MSL compiler via `MVKConfiguration::fastMathEnabled` configuration
setting and `MVK_CONFIG_FAST_MATH_ENABLED` environment variable (both disabled by default).
- Support _GitHub Actions_ for CI builds on pull requests.
- Remove support for _Travis-CI_.
- `Makefile` and `fetchDependencies` support `xcpretty` (if available)
- Update `VK_MVK_MOLTENVK_SPEC_VERSION` to `30`.
MoltenVK 1.1.1
--------------

View File

@ -50,12 +50,12 @@ typedef unsigned long MTLLanguageVersion;
*/
#define MVK_VERSION_MAJOR 1
#define MVK_VERSION_MINOR 1
#define MVK_VERSION_PATCH 1
#define MVK_VERSION_PATCH 2
#define MVK_MAKE_VERSION(major, minor, patch) (((major) * 10000) + ((minor) * 100) + (patch))
#define MVK_VERSION MVK_MAKE_VERSION(MVK_VERSION_MAJOR, MVK_VERSION_MINOR, MVK_VERSION_PATCH)
#define VK_MVK_MOLTENVK_SPEC_VERSION 29
#define VK_MVK_MOLTENVK_SPEC_VERSION 30
#define VK_MVK_MOLTENVK_EXTENSION_NAME "VK_MVK_moltenvk"
/**