diff options
author | Nicolas Roard <nicolas@android.com> | 2011-02-15 17:57:48 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-02-15 17:57:48 -0800 |
commit | 944d70ebdb065af6f4c2438f418c7defb18a3aee (patch) | |
tree | b5fa888213bc02be1d1fa56dc5873386fc3362f7 /WebCore/platform/graphics/android/BaseLayerAndroid.h | |
parent | 2146aa96a0108d6feaa45fcfb157c3c43e9b7131 (diff) | |
parent | f18fc03d63334e364d1a1b8e07dafb3fb0650c92 (diff) | |
download | external_webkit-944d70ebdb065af6f4c2438f418c7defb18a3aee.zip external_webkit-944d70ebdb065af6f4c2438f418c7defb18a3aee.tar.gz external_webkit-944d70ebdb065af6f4c2438f418c7defb18a3aee.tar.bz2 |
Merge "Improve layers repaint speed. Computing the layers texture size is heavy; we delay this computation if one was done recently."
Diffstat (limited to 'WebCore/platform/graphics/android/BaseLayerAndroid.h')
-rw-r--r-- | WebCore/platform/graphics/android/BaseLayerAndroid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebCore/platform/graphics/android/BaseLayerAndroid.h b/WebCore/platform/graphics/android/BaseLayerAndroid.h index c57b13d..cb1caef 100644 --- a/WebCore/platform/graphics/android/BaseLayerAndroid.h +++ b/WebCore/platform/graphics/android/BaseLayerAndroid.h @@ -59,7 +59,7 @@ public: void swapExtra(BaseLayerAndroid* base) { m_extra.swap(base->m_extra); } private: #if USE(ACCELERATED_COMPOSITING) - bool drawBasePictureInGL(SkRect& viewport, float scale); + bool drawBasePictureInGL(SkRect& viewport, float scale, double currentTime); GLWebViewState* m_glWebViewState; android::Mutex m_drawLock; |