mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 00:20:11 +01:00
13 lines
355 B
Text
13 lines
355 B
Text
|
|
{
|
||
|
|
global:
|
||
|
|
# Andoid looks for this global in HAL modules. In the source it occurs
|
||
|
|
# as HAL_MODULE_INFO_SYM (which is just a #define for HMI) and it's an
|
||
|
|
# instance of struct hwvulkan_module_t.
|
||
|
|
HMI;
|
||
|
|
|
||
|
|
local:
|
||
|
|
# When static linking LLVM, all its symbols are public API.
|
||
|
|
# That may cause symbol collision, so explicitly demote everything.
|
||
|
|
*;
|
||
|
|
};
|