(tmp_path)
| 197 | |
| 198 | |
| 199 | def testVulkanObjectSC(tmp_path): |
| 200 | SetOutputDirectory(tmp_path) |
| 201 | SetOutputFileName("test_vulkan_object_sc_out.txt") |
| 202 | SetTargetApiName('vulkansc') |
| 203 | SetMergedApiNames('vulkan') |
| 204 | |
| 205 | generator = MyGenerator() |
| 206 | base_options = BaseGeneratorOptions() |
| 207 | reg = Registry(generator, base_options) |
| 208 | |
| 209 | xml_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'xml', 'vk.xml')) |
| 210 | tree = ElementTree.parse(xml_path) |
| 211 | reg.loadElementTree(tree) |
| 212 | reg.apiGen() |
| 213 | |
| 214 | def testVulkanObjectWithVideoSC(tmp_path): |
| 215 | SetOutputDirectory(tmp_path) |
nothing calls this directly
no test coverage detected