Files
renderdoc/renderdoc/renderdoc.version
T
Peter Gal ca2b12be4d Export the egl* symbols via linker script
The egl symbols should be exported so applications
using it can correctly run with RenderDoc.
2017-07-20 09:50:46 -07:00

14 lines
268 B
Plaintext

{
global:
_init;
_fini;
gl[A-Z]*;
egl[A-Z]*;
dlopen;
_exit;
RENDERDOC_*;
VK_LAYER_RENDERDOC_*;
local:
*;
};