| 1118 | MarshalVkPhysicalDeviceMemoryProperties::write(pBoxedInfo, cpu->memory, ARG2, &pMemoryProperties.s); |
| 1119 | } |
| 1120 | void vk_GetPhysicalDeviceFeatures(CPU* cpu) { |
| 1121 | VkPhysicalDevice physicalDevice = (VkPhysicalDevice)getVulkanPtr(cpu->memory, ARG1); |
| 1122 | BoxedVulkanInfo* pBoxedInfo = getInfoFromHandle(cpu->memory, ARG1); |
| 1123 | MarshalVkPhysicalDeviceFeatures pFeatures(pBoxedInfo, cpu->memory, ARG2); |
| 1124 | pBoxedInfo->pvkGetPhysicalDeviceFeatures(physicalDevice, &pFeatures.s); |
| 1125 | MarshalVkPhysicalDeviceFeatures::write(pBoxedInfo, cpu->memory, ARG2, &pFeatures.s); |
| 1126 | } |
| 1127 | void vk_GetPhysicalDeviceFormatProperties(CPU* cpu) { |
| 1128 | VkPhysicalDevice physicalDevice = (VkPhysicalDevice)getVulkanPtr(cpu->memory, ARG1); |
| 1129 | BoxedVulkanInfo* pBoxedInfo = getInfoFromHandle(cpu->memory, ARG1); |
nothing calls this directly
no test coverage detected