Merge pull request #985 from billhollings/master

Update MoltenVK version to 1.0.45.
This commit is contained in:
Bill Hollings 2020-08-05 20:55:15 -04:00 committed by GitHub
commit 72ef14ed27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -13,6 +13,19 @@ For best results, use a Markdown reader.*
MoltenVK 1.0.45
---------------
Released TBD
- Improve performance of tessellation control pipeline stage by processing multiple
patches per workgroup.
- `vkCmdBindDescriptorSets` order `pDynamicOffsets` by descriptor binding number
within each descriptor set.
- `vkCmdCopyImage` on macOS flush non-coherent image memory before copy operation.
MoltenVK 1.0.44
---------------

View File

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