Skip to content

Commit

Permalink
Fixed bug 2983 - Update Android.readme to include Tegra Graphics Debu…
Browse files Browse the repository at this point in the history
…gger compatibility tip

Michael Labb?

NVidia has released some pretty nice Tegra profiling tools for their Android devices. The NVidia Tegra Graphics Debugger works by providing an interposer library that intercepts ES2 and EGL calls.  You must link against these libraries.

Unfortunately, this quietly fails with SDL2 because libEGL and libGLES2 are dynamically loaded with dlopen().

NVidia offers a secondary approach to using the Tegra Graphics Debugger: root your device and install a global interposer library.  Almost no devs will try this first if they don?t have a rooted device.

I propose an update to the Android readme that explains why the static linking approach recommended by NVidia doesn?t work.
  • Loading branch information
slouken committed Oct 8, 2016
1 parent 104c954 commit d3cbc66
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/README-android.md
Expand Up @@ -419,6 +419,15 @@ When you're done instrumenting with valgrind, you can disable the wrapper:

adb shell setprop wrap.org.libsdl.app ""

================================================================================
Graphics debugging
================================================================================

If you are developing on a compatible Tegra-based tablet, NVidia provides Tegra Graphics Debugger at their website. Because SDL2 dynamically loads EGL and GLES libraries, you must follow their instructions for installing the interposer library on a rooted device. The non-rooted instructions are not compatible with applications that use SDL2 for video.

The Tegra Graphics Debugger is available from NVidia here:
https://developer.nvidia.com/tegra-graphics-debugger

================================================================================
Why is API level 10 the minimum required?
================================================================================
Expand Down

0 comments on commit d3cbc66

Please sign in to comment.