Update MoltenVK version number to 1.1.9.

Adjust Whats_New.md to accommodate earlier
trivial 1.1.8 patch release for SDK 1.3.204.1.
This commit is contained in:
Bill Hollings 2022-02-22 14:18:55 -05:00
parent afd997ab31
commit e28a16d76b
2 changed files with 11 additions and 3 deletions

View File

@ -13,17 +13,25 @@ Copyright (c) 2015-2022 [The Brenwill Workshop Ltd.](http://www.brenwill.com)
MoltenVK 1.1.8
MoltenVK 1.1.9
--------------
Released TBD
- Update *glslang* version, to use `python3` in *glslang* scripts, to replace missing `python` on *macOS 12.3*.
- Remove logged warning if MoltenVK does not support `VkApplicationInfo::apiVersion` value.
- Fix alignment between outputs and inputs between shader stages when using nested structures.
MoltenVK 1.1.8
--------------
Released 2022/02/22
- Remove logged warning if MoltenVK does not support `VkApplicationInfo::apiVersion` value.
MoltenVK 1.1.7
--------------

View File

@ -50,7 +50,7 @@ typedef unsigned long MTLLanguageVersion;
*/
#define MVK_VERSION_MAJOR 1
#define MVK_VERSION_MINOR 1
#define MVK_VERSION_PATCH 8
#define MVK_VERSION_PATCH 9
#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)