| 3181 | } |
| 3182 | |
| 3183 | static void TestGetAllocatorInfo() |
| 3184 | { |
| 3185 | wprintf(L"Test vmaGetAllocatorInfo\n"); |
| 3186 | |
| 3187 | VmaAllocatorInfo allocInfo = {}; |
| 3188 | vmaGetAllocatorInfo(g_hAllocator, &allocInfo); |
| 3189 | TEST(allocInfo.instance == g_hVulkanInstance); |
| 3190 | TEST(allocInfo.physicalDevice == g_hPhysicalDevice); |
| 3191 | TEST(allocInfo.device == g_hDevice); |
| 3192 | } |
| 3193 | |
| 3194 | static void TestBasics() |
| 3195 | { |
no test coverage detected