aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2017-02-28 15:09:31 -0700
committerMark Lobodzinski <mark@lunarg.com>2017-02-28 15:09:31 -0700
commit9172c7bf11a3dbb663e170f57692e68891e891c9 (patch)
tree471e11df7403b7d1fcf52da4c2ced4788920b6e1 /scripts
parentbba73cd799889bb48a2b6f6f750a5005cc5ac068 (diff)
downloadusermoji-9172c7bf11a3dbb663e170f57692e68891e891c9.tar.xz
layers: Special-case threading GetSwapchainImages
This API is a special-case for the code-gen in that it sometimes returns an array of images. These do not need to be counted by start/finishReadObject and so were moved into the non-generated part of the layer source. Change-Id: Iaaab9143abadbf025b5f3c118aa26dae3c6f1bec
Diffstat (limited to 'scripts')
-rw-r--r--scripts/threading_generator.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/threading_generator.py b/scripts/threading_generator.py
index fc9174bf..97d7df00 100644
--- a/scripts/threading_generator.py
+++ b/scripts/threading_generator.py
@@ -383,6 +383,7 @@ class ThreadOutputGenerator(OutputGenerator):
'vkCreateDebugReportCallbackEXT',
'vkDestroyDebugReportCallbackEXT',
'vkAllocateDescriptorSets',
+ 'vkGetSwapchainImagesKHR',
]
if name in special_functions:
decls = self.makeCDecls(cmdinfo.elem)