summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/Android.mk
diff options
context:
space:
mode:
authorDerek Sollenberger <djsollen@google.com>2011-06-28 09:33:24 -0400
committerDerek Sollenberger <djsollen@google.com>2011-06-28 14:11:07 -0400
commitec182c75fb35d955a9115fbaf516f648a48ed0e1 (patch)
tree6b33a549fdca439f103ec78f2536e21e09f2dbf2 /Source/WebCore/Android.mk
parentb35ff6918673c5adf6e7cd4cbf636c9919abbaed (diff)
downloadexternal_webkit-ec182c75fb35d955a9115fbaf516f648a48ed0e1.zip
external_webkit-ec182c75fb35d955a9115fbaf516f648a48ed0e1.tar.gz
external_webkit-ec182c75fb35d955a9115fbaf516f648a48ed0e1.tar.bz2
Cleanup Skia related rendering code for raster rendering.
In the existing code we created a sharedBitmap for BaseTiles and never used it instead opting for createing bitmaps on the stack to enable partial invalidation. This CL removes the sharedBitmap concept and instead creates all bitmaps on the stack. This means that BackedDoubleBufferedTexture no longer needs to have a bitmap member, but instead simply takes the bitmap from the caller and uploads it to the appropriate texture. To make this upload clean we now pass the bitmap via const references instead of pointers. Change-Id: Ie218c4b4564e5574ca6e404d4857904ab41a3a5c
Diffstat (limited to 'Source/WebCore/Android.mk')
-rw-r--r--Source/WebCore/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/Android.mk b/Source/WebCore/Android.mk
index efdfc42..4673b45 100644
--- a/Source/WebCore/Android.mk
+++ b/Source/WebCore/Android.mk
@@ -632,9 +632,9 @@ LOCAL_SRC_FILES := $(LOCAL_SRC_FILES) \
platform/graphics/WidthIterator.cpp \
\
platform/graphics/android/AndroidAnimation.cpp \
- platform/graphics/android/BackedDoubleBufferedTexture.cpp \
platform/graphics/android/BaseLayerAndroid.cpp \
platform/graphics/android/BaseTile.cpp \
+ platform/graphics/android/BaseTileTexture.cpp \
platform/graphics/android/BitmapAllocatorAndroid.cpp \
platform/graphics/android/ClassTracker.cpp \
platform/graphics/android/DoubleBufferedTexture.cpp \