diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-28 09:00:04 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-28 09:01:07 +0200 |
commit | c167f05fdcc25e02276c4321c8af45009263b605 (patch) | |
tree | cfd6b1ee3e45ae82e257a6d9f5c1894f1482b100 /vcl/android | |
parent | 3f5434114bd8e67e97d73df76003ce08a2e931d2 (diff) |
Bin some repetitive verbose logging
Change-Id: I5c2ee005094ec3fdf1ebc766b0760a1f73b2682f
Diffstat (limited to 'vcl/android')
-rw-r--r-- | vcl/android/androidinst.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx index 2773cd390482..2677575b0ce6 100644 --- a/vcl/android/androidinst.cxx +++ b/vcl/android/androidinst.cxx @@ -278,8 +278,6 @@ void AndroidSalInstance::RedrawWindows(ANativeWindow *pWindow, ANativeWindow_Buf ANativeWindow_Buffer aOutBuffer; memset ((void *)&aOutBuffer, 0, sizeof (aOutBuffer)); - LOGI("RedrawWindows"); - int32_t nRet = 0; if (pBuffer != NULL) aOutBuffer = *pBuffer; @@ -318,8 +316,9 @@ void AndroidSalInstance::RedrawWindows(ANativeWindow *pWindow, ANativeWindow_Buf if (pFrame->IsVisible()) { - LOGI("render visible frame %d", i ); -#ifndef REGION_RE_RENDER +#ifndef REGION_RE_RENDER // (It isn't defined, don't know where it + // would/could bem so this branch is the one + // that is used) BlitFrameToWindow (&aOutBuffer, pFrame->getDevice()); #else // Sadly it seems that due to double buffering, we don't @@ -353,7 +352,6 @@ void AndroidSalInstance::RedrawWindows(ANativeWindow *pWindow, ANativeWindow_Buf if (pBuffer && pWindow) ANativeWindow_unlockAndPost(pWindow); - LOGI("done render!"); maRedrawRegion.SetEmpty(); mbQueueReDraw = false; } |