Lines Matching refs:apiName
335 def __init__ (self, apiName):
336 self.apiName = apiName # string "vulkan" or "vulkansc"
476 isExtensionSupported = self.apiName in supportedList.split(',')
757 if self.apiName == "vulkansc":
835 if self.apiName == "vulkan":
871 elif self.apiName == "vulkansc":
1220 def genDefinesSrc (apiName, defines):
1231 yield f"#define VK{apiName}_API_MAX_FRAMEWORK_VERSION\tVK{apiName}_API_VERSION_{major}_{minor}"
1266 for line in genDefinesSrc("SC" if api.apiName == "vulkansc" else "", api.defines):
1277 if len(enum.enumeratorList) == 0 and api.apiName == "vulkan":
1455 apiNum = 0 if api.apiName == "vulkan" else 1
2124 isSC = api.apiName == 'vulkansc'
2228 if api.apiName == "vulkansc":
2309 if api.apiName == "vulkansc":
2377 structureDetail.api = 0 if api.apiName == "vulkan" else 1
2395 if api.apiName == "vulkansc" and int(feature.number[-1]) > 2:
2399 structureDetail.api = 0 if api.apiName == "vulkan" else 1
2496 if api.apiName == "vulkan":
2847 additionalParams = ( 'memReservationStatMax, isSubProcess' if api.apiName == 'vulkansc' else 'isSubProcess' )
2848 additionalDefs = ( ' VkDeviceObjectReservationCreateInfo memReservationStatMax = context.getResourceInterface()->getStatMax();' if apiName == 'vulkansc' else '')
3222 elif api.apiName == "vulkan" and structName in dictStructs:
3346 if api.apiName != 'vulkansc':
3463 if extNotFound and api.apiName == "vulkansc":
3769 apiName = "vulkansc" if args.api == 'SC' else "vulkan"
3770 stripNonmatchingAPIs(vkTree.getroot(), apiName, actuallyDelete = True)
3773 api = API(apiName)