From 29e99f5f6697f79eb9f402175456f40c73f4fc9c Mon Sep 17 00:00:00 2001 From: Teng-Hui Zhu Date: Fri, 11 May 2012 15:21:40 -0700 Subject: Revert "Don't draw when clip is zero." This reverts commit 8391ddb06a5b36834e8bafb36763d792c1602ace. --- Source/WebKit/android/nav/WebView.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/WebKit/android/nav/WebView.cpp b/Source/WebKit/android/nav/WebView.cpp index 59901ff..a78392b 100644 --- a/Source/WebKit/android/nav/WebView.cpp +++ b/Source/WebKit/android/nav/WebView.cpp @@ -698,6 +698,11 @@ class GLDrawFunctor : Functor { if (shouldDraw) wvInstance->updateRectsForGL(); + if (invScreenRect.isEmpty()) { + // NOOP operation if viewport is empty + return 0; + } + WebCore::IntRect inval; int titlebarHeight = screenRect.height() - invScreenRect.height(); @@ -706,11 +711,6 @@ class GLDrawFunctor : Functor { info->clipRight - info->clipLeft, info->clipBottom - info->clipTop); - if (invScreenRect.isEmpty() || screenClip.isEmpty()) { - // NOOP operation if screenRect or clip is empty - return 0; - } - WebCore::IntRect localInvScreenRect = invScreenRect; if (info->isLayer) { // When webview is on a layer, we need to use the viewport relative -- cgit v1.1