diff options
Diffstat (limited to 'scripts/kvt_genvk.py')
| -rw-r--r-- | scripts/kvt_genvk.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/kvt_genvk.py b/scripts/kvt_genvk.py index 332ca76b..804b407e 100644 --- a/scripts/kvt_genvk.py +++ b/scripts/kvt_genvk.py @@ -163,11 +163,11 @@ def makeGenOpts(args): ] # Options for mock ICD header - genOpts['mock_icd.h'] = [ + genOpts['function_declarations.h'] = [ MockICDOutputGenerator, MockICDGeneratorOptions( conventions=conventions, - filename='mock_icd.h', + filename='function_declarations.h', directory=directory, genpath=None, apiname=apiname, @@ -185,15 +185,15 @@ def makeGenOpts(args): apientryp='VKAPI_PTR *', alignFuncParam=48, expandEnumerants=False, - helper_file_type='mock_icd_header') + helper_file_type='mock_icd_function_declaration_implementation') ] # Options for mock ICD cpp - genOpts['mock_icd.cpp'] = [ + genOpts['function_definitions.h'] = [ MockICDOutputGenerator, MockICDGeneratorOptions( conventions=conventions, - filename='mock_icd.cpp', + filename='function_definitions.h', directory=directory, genpath=None, apiname=apiname, @@ -211,7 +211,7 @@ def makeGenOpts(args): apientryp='VKAPI_PTR *', alignFuncParam=48, expandEnumerants=False, - helper_file_type='mock_icd_source') + helper_file_type='mock_icd_function_definition_implementation') ] # Options for vulkaninfo.hpp @@ -414,4 +414,4 @@ if __name__ == '__main__': startTimer(args.time) reg.apiGen() endTimer(args.time, '* Time to generate ' + options.filename + ' =') - genTarget(args)
\ No newline at end of file + genTarget(args) |
