summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsProgramVertex.cpp
diff options
context:
space:
mode:
authorJason Sams <rjsams@android.com>2009-06-23 12:22:47 -0700
committerJason Sams <rjsams@android.com>2009-06-23 12:22:47 -0700
commitf29ca50d80e3dc379de1642e85b7963175b2ca38 (patch)
tree17854358cfe316c08dbf5c80f8af8b0c7849bc33 /libs/rs/rsProgramVertex.cpp
parentf8001669ba7d9b3d0e097c7124e670f13374a6c7 (diff)
downloadframeworks_base-f29ca50d80e3dc379de1642e85b7963175b2ca38.zip
frameworks_base-f29ca50d80e3dc379de1642e85b7963175b2ca38.tar.gz
frameworks_base-f29ca50d80e3dc379de1642e85b7963175b2ca38.tar.bz2
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.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/rs/rsProgramVertex.cpp b/libs/rs/rsProgramVertex.cpp
index ec66662..4089507 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()