HomeSort by relevance Sort by last modified time
    Searched defs:platformCALayer (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 42 class PlatformCALayer;
57 virtual PlatformCALayer* platformCALayer() const { return primaryLayer(); }
133 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) { }
149 PlatformCALayer* primaryLayer() const { return m_structuralLayer.get() ? m_structuralLayer.get() : m_layer.get(); }
150 PlatformCALayer* hostLayerForSublayers() const;
151 PlatformCALayer* layerForSuperlayer() const;
152 PlatformCALayer* animatedLayer(AnimatedPropertyID) const;
157 typedef HashMap<CloneID, RefPtr<PlatformCALayer> > LayerMap;
193 void setupContentsLayer(PlatformCALayer*);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWin.cpp 30 #include "PlatformCALayer.h"
43 bool PlatformCALayer::isValueFunctionSupported()
48 void PlatformCALayer::setOwner(PlatformCALayerClient* owner)
53 static CFStringRef toCACFLayerType(PlatformCALayer::LayerType type)
55 return (type == PlatformCALayer::LayerTypeTransformLayer) ? kCACFTransformLayer : kCACFLayer;
58 static CFStringRef toCACFFilterType(PlatformCALayer::FilterType type)
61 case PlatformCALayer::Linear: return kCACFFilterLinear;
62 case PlatformCALayer::Nearest: return kCACFFilterNearest;
63 case PlatformCALayer::Trilinear: return kCACFFilterTrilinear;
68 static AbstractCACFLayerTreeHost* layerTreeHostForLayer(const PlatformCALayer* layer
    [all...]

Completed in 169 milliseconds