diff options
| author | Tony Barbour <tony@LunarG.com> | 2015-04-28 14:28:17 -0600 |
|---|---|---|
| committer | Tony Barbour <tony@LunarG.com> | 2015-04-28 14:28:17 -0600 |
| commit | c7f729bb10cbbf2c4369b3a8a850f041c600298e (patch) | |
| tree | 207de1b3443e8c750d57767f12c030c25496a609 | |
| parent | 7b0bbdd208928138989b74f34fea72775cde9f3b (diff) | |
| download | usermoji-c7f729bb10cbbf2c4369b3a8a850f041c600298e.tar.xz | |
layers: Add another routine to list that don't need use counts
| -rwxr-xr-x | vk-layer-generate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vk-layer-generate.py b/vk-layer-generate.py index ad7b3585..bd4776b7 100755 --- a/vk-layer-generate.py +++ b/vk-layer-generate.py @@ -1136,7 +1136,7 @@ class ObjectTrackerSubcommand(Subcommand): destroy_line = '' funcs = [] # Special cases for API funcs that don't use an object as first arg - if True in [no_use_proto in proto.name for no_use_proto in ['GlobalOption', 'CreateInstance', 'QueueSubmit', 'QueueAddMemReferences', 'QueueRemoveMemReferences', 'QueueWaitIdle', 'QueueBindObjectMemory', 'QueueBindObjectMemoryRange', 'QueueBindImageMemoryRange', 'GetGlobalExtensionInfo', 'CreateDevice', 'GetGpuInfo', 'QueueSignalSemaphore', 'QueueWaitSemaphore']]: + if True in [no_use_proto in proto.name for no_use_proto in ['GlobalOption', 'CreateInstance', 'QueueSubmit', 'QueueAddMemReferences', 'QueueRemoveMemReferences', 'QueueWaitIdle', 'QueueBindObjectMemory', 'QueueBindObjectMemoryRange', 'QueueBindImageMemoryRange', 'QueuePresentWSI', 'GetGlobalExtensionInfo', 'CreateDevice', 'GetGpuInfo', 'QueueSignalSemaphore', 'QueueWaitSemaphore']]: using_line = '' else: using_line = ' loader_platform_thread_lock_mutex(&objLock);\n' |
