summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rsContext.cpp1
-rw-r--r--rsProgramRaster.cpp2
-rw-r--r--rsScriptC.cpp2
3 files changed, 2 insertions, 3 deletions
diff --git a/rsContext.cpp b/rsContext.cpp
index 0ac8320d..e3236c4b 100644
--- a/rsContext.cpp
+++ b/rsContext.cpp
@@ -309,6 +309,7 @@ Context::Context(Device *dev, Surface *sur, bool useDepth)
objDestroyOOBInit();
timerInit();
+ timerSet(RS_TIMER_INTERNAL);
LOGV("RS Launching thread");
status = pthread_create(&mThreadId, &threadAttr, threadProc, this);
diff --git a/rsProgramRaster.cpp b/rsProgramRaster.cpp
index 0f5ec513..b968fe15 100644
--- a/rsProgramRaster.cpp
+++ b/rsProgramRaster.cpp
@@ -60,8 +60,6 @@ void ProgramRaster::setupGL(const Context *rsc, ProgramRasterState *state)
}
state->mLast.set(this);
- LOGE("setup %i %i %i %f %f", mPointSmooth, mLineSmooth, mPointSprite, mPointSize, mLineWidth);
-
glPointSize(mPointSize);
if (mPointSmooth) {
glEnable(GL_POINT_SMOOTH);
diff --git a/rsScriptC.cpp b/rsScriptC.cpp
index bff337c0..22d42ac8 100644
--- a/rsScriptC.cpp
+++ b/rsScriptC.cpp
@@ -147,7 +147,7 @@ void ScriptCState::runCompiler(Context *rsc, ScriptC *s)
ACCchar buf[4096];
ACCsizei len;
accGetScriptInfoLog(s->mAccScript, sizeof(buf), &len, buf);
- LOGE(buf);
+ LOGV(buf);
}
if (s->mProgram.mInit) {