HomeSort by relevance Sort by last modified time
    Searched refs:PlatformCALayer (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/ca/win/
AbstractCACFLayerTreeHost.h 35 class PlatformCALayer;
39 virtual PlatformCALayer* rootLayer() const = 0;
40 virtual void addPendingAnimatedLayer(PassRefPtr<PlatformCALayer>) = 0;
PlatformCALayerWinInternal.h 41 class PlatformCALayer;
43 typedef Vector<RefPtr<PlatformCALayer> > PlatformCALayerList;
47 PlatformCALayerWinInternal(PlatformCALayer*);
52 PlatformCALayer* owner() const { return m_owner; }
57 void insertSublayer(PlatformCALayer*, size_t);
59 int indexOfSublayer(const PlatformCALayer* reference);
66 PlatformCALayer* sublayerAtIndex(int) const;
78 PlatformCALayer* m_owner;
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...]
CACFLayerTreeHost.h 52 class PlatformCALayer;
63 void setRootChildLayer(PlatformCALayer*);
80 virtual PlatformCALayer* rootLayer() const;
90 virtual void addPendingAnimatedLayer(PassRefPtr<PlatformCALayer>);
97 virtual void initializeContext(void* userData, PlatformCALayer*) = 0;
100 RefPtr<PlatformCALayer> m_rootLayer;
101 RefPtr<PlatformCALayer> m_rootChildLayer;
102 HashSet<RefPtr<PlatformCALayer> > m_pendingAnimatedLayers;
WKCACFViewLayerTreeHost.h 47 virtual void initializeContext(void* userData, PlatformCALayer*);
LegacyCACFLayerTreeHost.h 57 virtual void initializeContext(void* userData, PlatformCALayer*);
PlatformCALayerWinInternal.cpp 33 #include "PlatformCALayer.h"
45 PlatformCALayerWinInternal::PlatformCALayerWinInternal(PlatformCALayer* owner)
50 if (m_owner->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) {
153 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) {
167 } else if (owner()->layerType() == PlatformCALayer::LayerTypeWebLayer) {
208 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) {
225 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) {
232 list[arrayIndex - layersToSkip] = PlatformCALayer::platformCALayer(const_cast<void*>(CFArrayGetValueAtIndex(sublayers, arrayIndex)));
240 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer)
    [all...]
CACFLayerTreeHost.cpp 34 #include "PlatformCALayer.h"
130 , m_rootLayer(PlatformCALayer::create(PlatformCALayer::LayerTypeRootLayer, 0))
199 PlatformCALayer* CACFLayerTreeHost::rootLayer() const
204 void CACFLayerTreeHost::addPendingAnimatedLayer(PassRefPtr<PlatformCALayer> layer)
209 void CACFLayerTreeHost::setRootChildLayer(PlatformCALayer* layer)
226 // The layer tree is changing as a result of someone modifying a PlatformCALayer that doesn't
315 HashSet<RefPtr<PlatformCALayer> >::iterator end = m_pendingAnimatedLayers.end();
316 for (HashSet<RefPtr<PlatformCALayer> >::iterator it = m_pendingAnimatedLayers.begin(); it != end; ++it)
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebTiledLayer.mm 34 #import "PlatformCALayer.h"
62 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
69 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
77 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self)
    [all...]
WebLayer.h 35 class PlatformCALayer;
52 void drawLayerContents(CGContextRef, CALayer *, WebCore::PlatformCALayer*);
WebLayer.mm 34 #import "PlatformCALayer.h"
43 void drawLayerContents(CGContextRef context, CALayer *layer, WebCore::PlatformCALayer* platformLayer)
148 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
155 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
163 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 30 #import "PlatformCALayer.h"
58 PlatformCALayer* m_owner;
62 - (void)setOwner:(PlatformCALayer*)owner;
85 - (void)setOwner:(PlatformCALayer*)owner
102 bool PlatformCALayer::isValueFunctionSupported()
108 void PlatformCALayer::setOwner(PlatformCALayerClient* owner)
137 static NSString* toCAFilterType(PlatformCALayer::FilterType type)
140 case PlatformCALayer::Linear: return kCAFilterLinear;
141 case PlatformCALayer::Nearest: return kCAFilterNearest;
142 case PlatformCALayer::Trilinear: return kCAFilterTrilinear
    [all...]
  /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...]
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...]
PlatformCALayerClient.h 44 class PlatformCALayer;
48 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) = 0;
GraphicsLayerCA.cpp 35 #include "PlatformCALayer.h"
260 m_layer = PlatformCALayer::create(PlatformCALayer::LayerTypeWebLayer, this);
427 void GraphicsLayerCA::moveOrCopyLayerAnimation(MoveOrCopy operation, const String& animationIdentifier, PlatformCALayer *fromLayer, PlatformCALayer *toLayer)
445 void GraphicsLayerCA::moveOrCopyAnimationsForProperty(MoveOrCopy operation, AnimatedPropertyID property, PlatformCALayer *fromLayer, PlatformCALayer *toLayer)
714 // PlatformCALayer. To determine this we attempt to get the
715 // PlatformCALayer pointer. If this returns a null pointer we assume it's
717 // PlatformCALayer is using a user data pointer in the raw layer, an
    [all...]
PlatformCAAnimation.h 58 friend class PlatformCALayer;
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateFullscreenWindow.h 46 class PlatformCALayer;
66 PlatformCALayer* rootChildLayer() const { return m_rootChild.get(); }
67 void setRootChildLayer(PassRefPtr<PlatformCALayer>);
77 RefPtr<PlatformCALayer> m_rootChild;
MediaPlayerPrivateFullscreenWindow.cpp 39 #include "PlatformCALayer.h"
98 void MediaPlayerPrivateFullscreenWindow::setRootChildLayer(PassRefPtr<PlatformCALayer> rootChild)
112 PlatformCALayer* rootLayer = m_rootChild->rootLayer();
161 PlatformCALayer* rootLayer = m_rootChild->rootLayer();
MediaPlayerPrivateQuickTimeVisualContext.h 54 class PlatformCALayer;
180 RefPtr<PlatformCALayer> m_qtVideoLayer;
181 RefPtr<PlatformCALayer> m_transformLayer;
MediaPlayerPrivateQuickTimeVisualContext.cpp 65 #include "PlatformCALayer.h"
98 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*);
115 void MediaPlayerPrivateQuickTimeVisualContext::LayerClient::platformCALayerLayoutSublayersOfLayer(PlatformCALayer* layer)
883 PlatformCALayer* layer = m_qtVideoLayer.get();
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.h 69 virtual WebCore::PlatformCALayer* rootLayer() const;
70 virtual void addPendingAnimatedLayer(PassRefPtr<WebCore::PlatformCALayer>);
75 HashSet<RefPtr<WebCore::PlatformCALayer> > m_pendingAnimatedLayers;
LayerTreeHostCAWin.cpp 37 #include <WebCore/PlatformCALayer.h>
246 HashSet<RefPtr<PlatformCALayer> >::iterator end = m_pendingAnimatedLayers.end();
247 for (HashSet<RefPtr<PlatformCALayer> >::iterator it = m_pendingAnimatedLayers.begin(); it != end; ++it)
256 PlatformCALayer* LayerTreeHostCAWin::rootLayer() const
258 return static_cast<GraphicsLayerCA*>(LayerTreeHostCA::rootLayer())->platformCALayer();
261 void LayerTreeHostCAWin::addPendingAnimatedLayer(PassRefPtr<PlatformCALayer> layer)
275 // The layer tree is changing as a result of someone modifying a PlatformCALayer that doesn't
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 41 #include <WebCore/PlatformCALayer.h>
182 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*);
199 void FullscreenVideoController::LayerClient::platformCALayerLayoutSublayersOfLayer(PlatformCALayer* layer)
208 PlatformCALayer* videoLayer = PlatformCALayer::platformCALayer(mediaElement->platformLayer());
246 , m_rootChild(PlatformCALayer::create(PlatformCALayer::LayerTypeLayer, m_layerClient.get()))
283 PlatformCALayer* videoLayer = PlatformCALayer::platformCALayer(m_mediaElement->platformLayer())
    [all...]
FullscreenVideoController.h 42 class PlatformCALayer;
164 RefPtr<WebCore::PlatformCALayer> m_rootChild;

Completed in 523 milliseconds

1 2