aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShannon McPherson <shannon@lunarg.com>2019-03-06 11:25:56 -0700
committerShannon McPherson <31491060+shannon-lunarg@users.noreply.github.com>2019-03-06 12:01:15 -0700
commitf392e71b994036c92b896c2a62cc63d042b7f9b1 (patch)
tree6472daa329a8449bb54fb4e73c6f694a39146c7e
parent0b44e581d9e9497bf94a050df1f6f878b5ffae24 (diff)
downloadvulkan-tools-f392e71b994036c92b896c2a62cc63d042b7f9b1.tar.gz
build: Correct Metal platform name
In `common_codegen.py` the Metal platform was defined without the "_EXT" suffix Change-Id: Ib36778735c09ae54d0e4a9bb0d7aa2fcec26b985
-rw-r--r--scripts/common_codegen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/common_codegen.py b/scripts/common_codegen.py
index c739bfaa..47bb6329 100644
--- a/scripts/common_codegen.py
+++ b/scripts/common_codegen.py
@@ -52,7 +52,7 @@ platform_dict = {
'fuchsia' : 'VK_USE_PLATFORM_FUCHSIA',
'ios' : 'VK_USE_PLATFORM_IOS_MVK',
'macos' : 'VK_USE_PLATFORM_MACOS_MVK',
- 'metal' : 'VK_USE_PLATFORM_METAL',
+ 'metal' : 'VK_USE_PLATFORM_METAL_EXT',
'vi' : 'VK_USE_PLATFORM_VI_NN',
'wayland' : 'VK_USE_PLATFORM_WAYLAND_KHR',
'win32' : 'VK_USE_PLATFORM_WIN32_KHR',