Update to latest SPIRV-Cross to fix MSL compilation failures on macOS 10.14 Mojave Beta (KhronosGroup/SPIRV-Cross#603). Fixes Dota 2 on Mojave.

Also update MoltenVK to 1.0.11 so that VkPipelineCache UUID changes and shaders get regenerated by applications.
This commit is contained in:
danginsburg 2018-06-12 08:24:56 -04:00
parent 8d9ee9b518
commit f5a3b9072f
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
6ef1c49ec0a9efdd8aebe42c68ba79b113f10bba
285f214071b00775c38fd2df8d78ff4e6b5019bc

View File

@ -48,7 +48,7 @@ extern "C" {
*/
#define MVK_VERSION_MAJOR 1
#define MVK_VERSION_MINOR 0
#define MVK_VERSION_PATCH 10
#define MVK_VERSION_PATCH 11
#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)