Home
last modified time | relevance | path

Searched refs:FixedBackgroundImageLayerAndroid (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
DBaseLayerAndroid.h66 class FixedBackgroundImageLayerAndroid : public LayerAndroid {
68 FixedBackgroundImageLayerAndroid(PassRefPtr<RenderStyle> style, int w, int h);
69 FixedBackgroundImageLayerAndroid(const FixedBackgroundImageLayerAndroid& layer);
70 virtual ~FixedBackgroundImageLayerAndroid();
71 virtual LayerAndroid* copy() const { return new FixedBackgroundImageLayerAndroid(*this); } in copy()
DBaseLayerAndroid.cpp119 FixedBackgroundImageLayerAndroid::FixedBackgroundImageLayerAndroid(PassRefPtr<RenderStyle> aStyle, in FixedBackgroundImageLayerAndroid() function in WebCore::FixedBackgroundImageLayerAndroid
151 FixedBackgroundImageLayerAndroid::FixedBackgroundImageLayerAndroid(const FixedBackgroundImageLayerA… in FixedBackgroundImageLayerAndroid() function in WebCore::FixedBackgroundImageLayerAndroid
161 FixedBackgroundImageLayerAndroid::~FixedBackgroundImageLayerAndroid() in ~FixedBackgroundImageLayerAndroid()
186 bool FixedBackgroundImageLayerAndroid::drawSimpleQuad(ImageTexture* imageTexture, in drawSimpleQuad()
250 void FixedBackgroundImageLayerAndroid::drawRepeatedGrid(ImageTexture* imageTexture, in drawRepeatedGrid()
287 bool FixedBackgroundImageLayerAndroid::drawGL(bool layerTilesDisabled) in drawGL()
333 Image* FixedBackgroundImageLayerAndroid::GetCachedImage(PassRefPtr<RenderStyle> aStyle) in GetCachedImage()
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.h41 class FixedBackgroundImageLayerAndroid; variable
169 FixedBackgroundImageLayerAndroid* m_fixedBackgroundLayer;
DGraphicsLayerAndroid.cpp597 Image* image = FixedBackgroundImageLayerAndroid::GetCachedImage(view->style()); in updateFixedBackgroundLayers()
617 m_fixedBackgroundLayer = new FixedBackgroundImageLayerAndroid(view->style(), in updateFixedBackgroundLayers()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp840 Image* backgroundImage = FixedBackgroundImageLayerAndroid::GetCachedImage(style); in createBaseLayer()
869 FixedBackgroundImageLayerAndroid* baseBackground = in createBaseLayer()
870 new FixedBackgroundImageLayerAndroid(style, content->width(), content->height()); in createBaseLayer()