| 854 | |
| 855 | #if defined(__ANDROID__) |
| 856 | std::string VulkanDeviceInfo::getSystemProperty(const char* propname) |
| 857 | { |
| 858 | char prop[PROP_VALUE_MAX+1]; |
| 859 | int len = __system_property_get(propname, prop); |
| 860 | if (len > 0) { |
| 861 | return std::string(prop); |
| 862 | } else { |
| 863 | return ""; |
| 864 | } |
| 865 | } |
| 866 | #endif |
| 867 | |
| 868 | void VulkanDeviceInfo::readPlatformDetails() |
nothing calls this directly
no outgoing calls
no test coverage detected