diff options
author | Jon Leech <[email protected]> | 2022-07-28 04:36:37 -0700 |
---|---|---|
committer | Jon Leech <[email protected]> | 2022-07-28 04:37:50 -0700 |
commit | ff92049ebd7e2f7013bb9d3b0450097561cee352 (patch) | |
tree | ecc04d44961a8c70e7fa41760bbf6f7234a6c61e /registry/genvk.py | |
parent | 87d2aa9d77bc979559c2d4adabe5b12bb1d49d51 (diff) | |
download | Vulkan-Headers-ff92049ebd7e2f7013bb9d3b0450097561cee352.tar.gz Vulkan-Headers-ff92049ebd7e2f7013bb9d3b0450097561cee352.zip |
Update for Vulkan-Docs 1.3.223v1.3.223
Diffstat (limited to 'registry/genvk.py')
-rwxr-xr-x | registry/genvk.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/registry/genvk.py b/registry/genvk.py index 2230a81..1b473ac 100755 --- a/registry/genvk.py +++ b/registry/genvk.py @@ -94,7 +94,7 @@ def makeGenOpts(args): # Output target directory directory = args.directory - # Path to generated files, particularly api.py + # Path to generated files, particularly apimap.py genpath = args.genpath # Generate MISRA C-friendly headers @@ -175,11 +175,11 @@ def makeGenOpts(args): # Python and Ruby representations of API information, used by scripts # that do not need to load the full XML. - genOpts['api.py'] = [ + genOpts['apimap.py'] = [ PyOutputGenerator, DocGeneratorOptions( conventions = conventions, - filename = 'api.py', + filename = 'apimap.py', directory = directory, genpath = None, apiname = defaultAPIName, @@ -193,11 +193,11 @@ def makeGenOpts(args): reparentEnums = False) ] - genOpts['api.rb'] = [ + genOpts['apimap.rb'] = [ RubyOutputGenerator, DocGeneratorOptions( conventions = conventions, - filename = 'api.rb', + filename = 'apimap.rb', directory = directory, genpath = None, apiname = defaultAPIName, @@ -551,7 +551,7 @@ def makeGenOpts(args): # but are treated in a similar fashion for generation purposes. # # Each element of the videoStd[] array is an 'extension' name defining - # an iterface, and is also the basis for the generated header file name. + # an interface, and is also the basis for the generated header file name. videoStd = [ 'vulkan_video_codecs_common', |