HomeSort by relevance Sort by last modified time
    Searched refs:needsTexture (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
BaseLayerAndroid.h 45 virtual bool needsTexture() { return content(); }
63 virtual bool needsTexture() { return false; }
72 virtual bool needsTexture() { return true; }
CanvasLayer.h 54 virtual bool needsTexture();
MediaLayer.h 41 virtual bool needsTexture() { return false; }
CanvasLayer.cpp 181 bool CanvasLayer::needsTexture()
183 return (m_bitmap && !masksToBounds()) || LayerAndroid::needsTexture();
LayerAndroid.h 144 virtual bool needsTexture();
277 return (needsTexture() && m_intrinsicallyComposited)
LayerAndroid.cpp 547 bool LayerAndroid::needsTexture()
550 || (m_originalLayer && m_originalLayer->needsTexture());
577 if (needsTexture())
606 needsTexture() ? "needsTexture" : "",
687 needsTexture(), getWidth(), getHeight());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Surface.cpp 75 if (!needsTexture() || !oldSurface->needsTexture())
86 this, m_surfaceBacking, oldSurface, oldSurface->needsTexture());
142 m_needsTexture |= layer->needsTexture();
149 if (layer->needsTexture()) {
202 ALOGV("prepareGL on Surf %p, no SurfBack, needsTexture? %d",
203 this, m_surfaceBacking, needsTexture());
205 if (needsTexture() || (isBase() && layerTilesDisabled))
312 if (!needsTexture())
Surface.h 63 bool needsTexture() { return m_needsTexture; }
SurfaceCollection.cpp 196 if (!newSurface->needsTexture())
255 if (m_surfaces[i]->needsTexture())
  /external/webkit/Source/WebCore/tests/
TreeManager_test.cpp 283 ASSERT_TRUE(l->needsTexture());
325 ASSERT_TRUE(paintChildA->needsTexture());
330 ASSERT_TRUE(paintChildB->needsTexture());
347 ASSERT_TRUE(paintChildC->needsTexture());

Completed in 487 milliseconds