1{ 2 global: 3 vk_icdGetInstanceProcAddr; 4 vk_icdGetPhysicalDeviceProcAddr; 5 vk_icdNegotiateLoaderICDInterfaceVersion; 6 7 # Andoid looks for this global in HAL modules. In the source it occurs 8 # as HAL_MODULE_INFO_SYM (which is just a #define for HMI) and it's an 9 # instance of struct hwvulkan_module_t. 10 HMI; 11 12 local: 13 # When static linking LLVM, all its symbols are public API. 14 # That may cause symbol collision, so explicitly demote everything. 15 *; 16}; 17