diff options
| author | 2014-11-20 17:50:20 +0000 | |
|---|---|---|
| committer | 2014-11-20 17:50:20 +0000 | |
| commit | 57b641a2ed87f2827399c363053436cba88bee75 (patch) | |
| tree | 2b1bc4b59c57754cec6f29562decc445f2ca9a5e /libs/hwui/Program.cpp | |
| parent | 6456513f6ff844fd15f3453a66fcc8fb439e1ef7 (diff) | |
| parent | 3b2ba44be3699a4e133d7a09cb4ed182405d7ff9 (diff) | |
am 3b2ba44b: Merge "Improve logging around performance critical events" into lmp-mr1-dev
* commit '3b2ba44be3699a4e133d7a09cb4ed182405d7ff9':
Improve logging around performance critical events
Diffstat (limited to 'libs/hwui/Program.cpp')
| -rw-r--r-- | libs/hwui/Program.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Program.cpp b/libs/hwui/Program.cpp index 0dad0dcae641..e6fd2dc370c2 100644 --- a/libs/hwui/Program.cpp +++ b/libs/hwui/Program.cpp @@ -132,7 +132,7 @@ int Program::getUniform(const char* name) { } GLuint Program::buildShader(const char* source, GLenum type) { - ATRACE_CALL(); + ATRACE_NAME("Build GL Shader"); GLuint shader = glCreateShader(type); glShaderSource(shader, 1, &source, 0); |