diff options
author | 2009-06-23 12:22:47 -0700 | |
---|---|---|
committer | 2009-06-23 12:22:47 -0700 | |
commit | f29ca50d80e3dc379de1642e85b7963175b2ca38 (patch) | |
tree | 17854358cfe316c08dbf5c80f8af8b0c7849bc33 /libs/rs/rsProgramVertex.cpp | |
parent | f8001669ba7d9b3d0e097c7124e670f13374a6c7 (diff) |
Cleanup logging and fix a startup race condition that manifested on Firestone.
Diffstat (limited to 'libs/rs/rsProgramVertex.cpp')
-rw-r--r-- | libs/rs/rsProgramVertex.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/rs/rsProgramVertex.cpp b/libs/rs/rsProgramVertex.cpp index ec666627367e..4089507bbb98 100644 --- a/libs/rs/rsProgramVertex.cpp +++ b/libs/rs/rsProgramVertex.cpp @@ -36,11 +36,11 @@ ProgramVertex::~ProgramVertex() static void logMatrix(const char *txt, const float *f) { - LOGE("Matrix %s, %p", txt, f); - LOGE("%6.2f, %6.2f, %6.2f, %6.2f", f[0], f[4], f[8], f[12]); - LOGE("%6.2f, %6.2f, %6.2f, %6.2f", f[1], f[5], f[9], f[13]); - LOGE("%6.2f, %6.2f, %6.2f, %6.2f", f[2], f[6], f[10], f[14]); - LOGE("%6.2f, %6.2f, %6.2f, %6.2f", f[3], f[7], f[11], f[15]); + LOGV("Matrix %s, %p", txt, f); + LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[0], f[4], f[8], f[12]); + LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[1], f[5], f[9], f[13]); + LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[2], f[6], f[10], f[14]); + LOGV("%6.2f, %6.2f, %6.2f, %6.2f", f[3], f[7], f[11], f[15]); } void ProgramVertex::setupGL() |