diff options
author | Romain Guy <romainguy@google.com> | 2017-02-08 07:45:11 -0800 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2017-02-08 07:45:11 -0800 |
commit | 91a8ec0145ae0ce85782b40c964d16ba2465aec7 (patch) | |
tree | cc722130a081dcdff25321948058bb21b31c6679 /libs/hwui/ProgramCache.cpp | |
parent | c71d1c28809085c507340a9497b40646b2008996 (diff) |
Don't print shader source
Bug: 32984164
Test: compile & run
Change-Id: If632e49b773ca44d4e09e3acb5979f4df15a8d77
Diffstat (limited to 'libs/hwui/ProgramCache.cpp')
-rw-r--r-- | libs/hwui/ProgramCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/ProgramCache.cpp b/libs/hwui/ProgramCache.cpp index 00de9924ace1..ca056487a3ba 100644 --- a/libs/hwui/ProgramCache.cpp +++ b/libs/hwui/ProgramCache.cpp @@ -735,10 +735,10 @@ String8 ProgramCache::generateFragmentShader(const ProgramDescription& descripti // End the shader shader.append(gFS_Footer); -//#if DEBUG_PROGRAMS +#if DEBUG_PROGRAMS PROGRAM_LOGD("*** Generated fragment shader:\n\n"); printLongString(shader); -//#endif +#endif return shader; } |