Searched defs:PlatformCALayer (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/ca/
H A DPlatformCALayer.h44 class PlatformCALayer;
46 typedef Vector<RefPtr<PlatformCALayer> > PlatformCALayerList;
48 class PlatformCALayer : public RefCounted<PlatformCALayer> { class in namespace:WebCore
56 static PassRefPtr<PlatformCALayer> create(LayerType, PlatformCALayerClient*);
60 static PassRefPtr<PlatformCALayer> create(void* platformLayer, PlatformCALayerClient*);
62 ~PlatformCALayer();
66 static PlatformCALayer* platformCALayer(void* platformLayer);
70 PlatformCALayer* rootLayer() const;
96 PlatformCALayer* superlaye
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp30 #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* laye
111 PlatformCALayer::PlatformCALayer(LayerType layerType, PlatformLayer* layer, PlatformCALayerClient* owner) function in class:PlatformCALayer
[all...]

Completed in 41 milliseconds