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/
PlatformCALayer.h 44 class PlatformCALayer;
46 typedef Vector<RefPtr<PlatformCALayer> > PlatformCALayerList;
48 class PlatformCALayer : public RefCounted<PlatformCALayer> {
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
    [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 35 milliseconds