From 3c82c28052cd138c1228065dacc019ba66ed664e Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Sat, 10 Mar 2018 17:25:25 +0200 Subject: README: Add note about apitrace --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 8c2edf2..8ee7d26 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,18 @@ for all the functions that will be implemented. As for implementing stuff, people should only implement the stuff some application needs. Lets not implement anything that doesn't get used. +## Debugging with apitrace + +Since apitrace and similiar OpenGL debuggers redirect the dlopen calls, +you have to `LD_PRELOAD` the `runtime/libEGL.so` while running apitrace. +`runtime/libEGL.so` is responsible for wrapping `eglGetDisplay` and +`eglCreateWindowSurface` functions, so that valid native handles are +passed to the real system EGL implementation. + +``` +LD_PRELOAD=runtime/libEGL.so apitrace -a egl ./app bioniclib.so +``` + ## Q & A ### Why? I still don't get what this is for... -- cgit v1.2.3