diff options
author | Derek Sollenberger <djsollen@google.com> | 2010-11-05 12:07:58 -0400 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2010-11-05 12:36:23 -0400 |
commit | a1e806ed3b2d9e2727d08cc2a3958fce501f6f33 (patch) | |
tree | 080f1f338514bb7ee83fd8b41007b0f2d7cc689c /WebCore/platform/graphics/android/DoubleBufferedTexture.h | |
parent | 1e6843296fbdb863eaaaa99df71c7b333e7b7803 (diff) | |
download | external_webkit-a1e806ed3b2d9e2727d08cc2a3958fce501f6f33.zip external_webkit-a1e806ed3b2d9e2727d08cc2a3958fce501f6f33.tar.gz external_webkit-a1e806ed3b2d9e2727d08cc2a3958fce501f6f33.tar.bz2 |
Support partial invalidation of tiles based on webkit's inval rect.
This CL reverts the rollback of the original CL now that we have
fixed bug #3165953.
This reverts commit 144ccd9c8dba05ffaa0ae598f9b70032050fc20e.
Change-Id: Ibb5254f652ed95aa3b7b71bf24a2578c51e74a70
Diffstat (limited to 'WebCore/platform/graphics/android/DoubleBufferedTexture.h')
-rw-r--r-- | WebCore/platform/graphics/android/DoubleBufferedTexture.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/WebCore/platform/graphics/android/DoubleBufferedTexture.h b/WebCore/platform/graphics/android/DoubleBufferedTexture.h index d16d5f3..2b2fd03 100644 --- a/WebCore/platform/graphics/android/DoubleBufferedTexture.h +++ b/WebCore/platform/graphics/android/DoubleBufferedTexture.h @@ -50,11 +50,6 @@ public: TextureInfo* consumerLock(); void consumerRelease(); -protected: - bool equalsIdTextureA(GLuint id) { return id == m_textureA.getSourceTextureId(); } - bool equalsIdTextureB(GLuint id) { return id == m_textureB.getSourceTextureId(); } - bool isTextureAReadable() { return getReadableTexture() == &m_textureA; } - private: SharedTexture* getReadableTexture(); SharedTexture* getWriteableTexture(); |