From c167f05fdcc25e02276c4321c8af45009263b605 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 28 Feb 2013 09:00:04 +0200 Subject: Bin some repetitive verbose logging Change-Id: I5c2ee005094ec3fdf1ebc766b0760a1f73b2682f --- vcl/android/androidinst.cxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'vcl/android') 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; } -- cgit