| 31 | VkPhysicalDeviceFeatures _vkPhysicalDeviceFeatures; |
| 32 | |
| 33 | _INTR_STRING getPipelineCacheUUID() |
| 34 | { |
| 35 | _INTR_STRING uuid; |
| 36 | for (uint32_t i = 0u; i < VK_UUID_SIZE; ++i) |
| 37 | { |
| 38 | uuid += StringUtil::toString( |
| 39 | (uint32_t)_vkPhysicalDeviceProps.pipelineCacheUUID[i]); |
| 40 | } |
| 41 | return uuid; |
| 42 | } |
| 43 | |
| 44 | _INTR_STRING getPipelineCacheFilePath() |
| 45 | { |
no outgoing calls
no test coverage detected