diff options
author | Igor Murashkin <iam@google.com> | 2013-10-25 17:13:57 -0700 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2013-10-25 17:13:57 -0700 |
commit | 1f8363329cd6b00c4f8e6f1f97bb3e76071d124a (patch) | |
tree | e34e35aee9e3329578202b5c022d8b705b5988db | |
parent | 3223217aed6dcfa55b5b952cd6be71f70e41ba63 (diff) | |
download | frameworks_native-1f8363329cd6b00c4f8e6f1f97bb3e76071d124a.zip frameworks_native-1f8363329cd6b00c4f8e6f1f97bb3e76071d124a.tar.gz frameworks_native-1f8363329cd6b00c4f8e6f1f97bb3e76071d124a.tar.bz2 |
EGL: rename CallStack::dump into CallStack::log
Bug: 11324229
Change-Id: Ibac1be182c336e7aa5ac098f08d18b3c188964b4
-rw-r--r-- | opengl/libs/EGL/trace.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/trace.cpp b/opengl/libs/EGL/trace.cpp index bac6ba8..3e228e4 100644 --- a/opengl/libs/EGL/trace.cpp +++ b/opengl/libs/EGL/trace.cpp @@ -435,7 +435,7 @@ EGLAPI gl_hooks_t gHooksSystrace = { if (error) { \ CallStack s; \ s.update(); \ - s.dump("glGetError:" #_api); \ + s.log("glGetError:" #_api); \ } \ #define TRACE_GL_VOID(_api, _args, _argList, ...) \ |