aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtney@LunarG.com>2015-02-25 17:12:26 -0700
committerCourtney Goeltzenleuchter <courtney@LunarG.com>2015-02-25 17:15:47 -0700
commit39e3bfe39e067e2b5de45aeb0ac70cf0a167bf09 (patch)
tree96adf4fb685ffb570aacb3795258cb31cc8dbb8f
parent75f01f586920501e2c2353e50577eee97bd6d92f (diff)
downloadusermoji-39e3bfe39e067e2b5de45aeb0ac70cf0a167bf09.tar.xz
layers: Do not track Queue objects
Queue objects are not created by an application and thus never destroyed. Thus do not need to track.
-rwxr-xr-xxgl-layer-generate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/xgl-layer-generate.py b/xgl-layer-generate.py
index c9eca131..c1bac50e 100755
--- a/xgl-layer-generate.py
+++ b/xgl-layer-generate.py
@@ -595,7 +595,7 @@ class Subcommand(object):
using_line += ' pTrav = pTrav->pNext;\n'
using_line += ' }\n'
# Special cases for API funcs that don't use an object as first arg
- elif True in [no_use_proto in proto.name for no_use_proto in ['GlobalOption', 'CreateInstance']]:
+ elif True in [no_use_proto in proto.name for no_use_proto in ['GlobalOption', 'CreateInstance', 'QueueSubmit', 'QueueSetGlobalMemReferences', 'QueueWaitIdle', 'SignalQueueSemaphore', 'WaitQueueSemaphore', 'WsiX11QueuePresent']]:
using_line = ''
else:
using_line = ' loader_platform_thread_lock_mutex(&objLock);\n'