Home
last modified time | relevance | path

Searched refs:PlatformCALayer (Results 1 – 25 of 35) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/ca/win/
DPlatformCALayerWin.cpp43 bool PlatformCALayer::isValueFunctionSupported() in isValueFunctionSupported()
48 void PlatformCALayer::setOwner(PlatformCALayerClient* owner) in setOwner()
53 static CFStringRef toCACFLayerType(PlatformCALayer::LayerType type) in toCACFLayerType()
55 return (type == PlatformCALayer::LayerTypeTransformLayer) ? kCACFTransformLayer : kCACFLayer; in toCACFLayerType()
58 static CFStringRef toCACFFilterType(PlatformCALayer::FilterType type) in toCACFFilterType()
61 case PlatformCALayer::Linear: return kCACFFilterLinear; in toCACFFilterType()
62 case PlatformCALayer::Nearest: return kCACFFilterNearest; in toCACFFilterType()
63 case PlatformCALayer::Trilinear: return kCACFFilterTrilinear; in toCACFFilterType()
68 static AbstractCACFLayerTreeHost* layerTreeHostForLayer(const PlatformCALayer* layer) in layerTreeHostForLayer()
78 static PlatformCALayerWinInternal* intern(const PlatformCALayer* layer) in intern()
[all …]
DPlatformCALayerWinInternal.h41 class PlatformCALayer; variable
43 typedef Vector<RefPtr<PlatformCALayer> > PlatformCALayerList;
47 PlatformCALayerWinInternal(PlatformCALayer*);
52 PlatformCALayer* owner() const { return m_owner; } in owner()
57 void insertSublayer(PlatformCALayer*, size_t);
59 int indexOfSublayer(const PlatformCALayer* reference);
66 PlatformCALayer* sublayerAtIndex(int) const;
78 PlatformCALayer* m_owner;
DCACFLayerTreeHost.h52 class PlatformCALayer; variable
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;
DPlatformCALayerWinInternal.cpp45 PlatformCALayerWinInternal::PlatformCALayerWinInternal(PlatformCALayer* owner) in PlatformCALayerWinInternal()
50 if (m_owner->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in PlatformCALayerWinInternal()
153 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in setNeedsDisplay()
167 } else if (owner()->layerType() == PlatformCALayer::LayerTypeWebLayer) { in setNeedsDisplay()
208 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in setSublayers()
225 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in getSublayers()
232 …list[arrayIndex - layersToSkip] = PlatformCALayer::platformCALayer(const_cast<void*>(CFArrayGetVal… in getSublayers()
240 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in removeAllSublayers()
246 void PlatformCALayerWinInternal::insertSublayer(PlatformCALayer* layer, size_t index) in insertSublayer()
249 if (owner()->layerType() == PlatformCALayer::LayerTypeWebTiledLayer) { in insertSublayer()
[all …]
DAbstractCACFLayerTreeHost.h35 class PlatformCALayer; variable
39 virtual PlatformCALayer* rootLayer() const = 0;
40 virtual void addPendingAnimatedLayer(PassRefPtr<PlatformCALayer>) = 0;
DCACFLayerTreeHost.cpp130 , m_rootLayer(PlatformCALayer::create(PlatformCALayer::LayerTypeRootLayer, 0)) in CACFLayerTreeHost()
199 PlatformCALayer* CACFLayerTreeHost::rootLayer() const in rootLayer()
204 void CACFLayerTreeHost::addPendingAnimatedLayer(PassRefPtr<PlatformCALayer> layer) in addPendingAnimatedLayer()
209 void CACFLayerTreeHost::setRootChildLayer(PlatformCALayer* layer) in setRootChildLayer()
315 HashSet<RefPtr<PlatformCALayer> >::iterator end = m_pendingAnimatedLayers.end(); in notifyAnimationsStarted()
316 …for (HashSet<RefPtr<PlatformCALayer> >::iterator it = m_pendingAnimatedLayers.begin(); it != end; … in notifyAnimationsStarted()
DWKCACFViewLayerTreeHost.h47 virtual void initializeContext(void* userData, PlatformCALayer*);
DLegacyCACFLayerTreeHost.h57 virtual void initializeContext(void* userData, PlatformCALayer*);
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
DPlatformCALayerMac.mm30 #import "PlatformCALayer.h"
58 PlatformCALayer* m_owner;
62 - (void)setOwner:(PlatformCALayer*)owner; argument
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/
DPlatformCALayer.h44 class PlatformCALayer; variable
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;
96 PlatformCALayer* superlayer() const;
100 void appendSublayer(PlatformCALayer*);
[all …]
DGraphicsLayerCA.h42 class PlatformCALayer; variable
57 virtual PlatformCALayer* platformCALayer() const { return primaryLayer(); } in platformCALayer()
133 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) { } in platformCALayerLayoutSublayersOfLayer() argument
149PlatformCALayer* primaryLayer() const { return m_structuralLayer.get() ? m_structuralLayer.get() :… in primaryLayer()
150 PlatformCALayer* hostLayerForSublayers() const;
151 PlatformCALayer* layerForSuperlayer() const;
152 PlatformCALayer* animatedLayer(AnimatedPropertyID) const;
157 typedef HashMap<CloneID, RefPtr<PlatformCALayer> > LayerMap;
193 void setupContentsLayer(PlatformCALayer*);
194 PlatformCALayer* contentsLayer() const { return m_contentsLayer.get(); } in contentsLayer()
[all …]
DGraphicsLayerCA.cpp260 m_layer = PlatformCALayer::create(PlatformCALayer::LayerTypeWebLayer, this); in GraphicsLayerCA()
427 …veOrCopy operation, const String& animationIdentifier, PlatformCALayer *fromLayer, PlatformCALayer in moveOrCopyLayerAnimation()
445 …rty(MoveOrCopy operation, AnimatedPropertyID property, PlatformCALayer *fromLayer, PlatformCALayer in moveOrCopyAnimationsForProperty()
720 PlatformCALayer* platformCALayer = PlatformCALayer::platformCALayer(mediaLayer); in setContentsToMedia()
721 …m_contentsLayer = mediaLayer ? (platformCALayer ? platformCALayer : PlatformCALayer::create(mediaL… in setContentsToMedia()
734 m_contentsLayer = canvasLayer ? PlatformCALayer::create(canvasLayer, this) : 0; in setContentsToCanvas()
744 PlatformCALayer* currentLayer = PlatformCALayer::platformCALayer(layer); in layerDidDisplay()
745 PlatformCALayer* sourceLayer; in layerDidDisplay()
760 PlatformCALayer* currClone = it->second.get(); in layerDidDisplay()
933 PlatformCALayer* childLayer = curChild->layerForSuperlayer(); in updateSublayerList()
[all …]
DPlatformCALayerClient.h44 class PlatformCALayer; variable
48 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) = 0;
DPlatformCAAnimation.h58 friend class PlatformCALayer;
/external/webkit/Source/WebCore/platform/graphics/mac/
DWebTiledLayer.mm34 #import "PlatformCALayer.h"
62 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
69 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
77 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
84 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
DWebLayer.mm34 #import "PlatformCALayer.h"
43 void drawLayerContents(CGContextRef context, CALayer *layer, WebCore::PlatformCALayer* platformLaye…
148 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
155 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
163 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
170 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
DWebLayer.h35 class PlatformCALayer; variable
52 void drawLayerContents(CGContextRef, CALayer *, WebCore::PlatformCALayer*);
/external/webkit/Source/WebCore/platform/graphics/win/
DMediaPlayerPrivateFullscreenWindow.h46 class PlatformCALayer; variable
66 PlatformCALayer* rootChildLayer() const { return m_rootChild.get(); } in rootChildLayer()
67 void setRootChildLayer(PassRefPtr<PlatformCALayer>);
77 RefPtr<PlatformCALayer> m_rootChild;
DMediaPlayerPrivateQuickTimeVisualContext.h54 class PlatformCALayer; variable
180 RefPtr<PlatformCALayer> m_qtVideoLayer;
181 RefPtr<PlatformCALayer> m_transformLayer;
DMediaPlayerPrivateFullscreenWindow.cpp98 void MediaPlayerPrivateFullscreenWindow::setRootChildLayer(PassRefPtr<PlatformCALayer> rootChild) in setRootChildLayer()
112 PlatformCALayer* rootLayer = m_rootChild->rootLayer(); in setRootChildLayer()
161 PlatformCALayer* rootLayer = m_rootChild->rootLayer(); in wndProc()
DMediaPlayerPrivateQuickTimeVisualContext.cpp98 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*);
115 …eQuickTimeVisualContext::LayerClient::platformCALayerLayoutSublayersOfLayer(PlatformCALayer* layer) in platformCALayerLayoutSublayersOfLayer()
883 PlatformCALayer* layer = m_qtVideoLayer.get(); in retrieveCurrentImage()
1198 … m_transformLayer = PlatformCALayer::create(PlatformCALayer::LayerTypeLayer, m_layerClient.get()); in createLayerForMovie()
1205 m_qtVideoLayer = PlatformCALayer::create(PlatformCALayer::LayerTypeLayer, 0); in createLayerForMovie()
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
DLayerTreeHostCAWin.h69 virtual WebCore::PlatformCALayer* rootLayer() const;
70 virtual void addPendingAnimatedLayer(PassRefPtr<WebCore::PlatformCALayer>);
75 HashSet<RefPtr<WebCore::PlatformCALayer> > m_pendingAnimatedLayers;
DLayerTreeHostCAWin.cpp246 HashSet<RefPtr<PlatformCALayer> >::iterator end = m_pendingAnimatedLayers.end(); in contextDidChange()
247 …for (HashSet<RefPtr<PlatformCALayer> >::iterator it = m_pendingAnimatedLayers.begin(); it != end; … in contextDidChange()
256 PlatformCALayer* LayerTreeHostCAWin::rootLayer() const in rootLayer()
261 void LayerTreeHostCAWin::addPendingAnimatedLayer(PassRefPtr<PlatformCALayer> layer) in addPendingAnimatedLayer()
/external/webkit/Source/WebKit/win/
DFullscreenVideoController.cpp182 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*);
199 void FullscreenVideoController::LayerClient::platformCALayerLayoutSublayersOfLayer(PlatformCALayer*… in platformCALayerLayoutSublayersOfLayer()
208 PlatformCALayer* videoLayer = PlatformCALayer::platformCALayer(mediaElement->platformLayer()); in platformCALayerLayoutSublayersOfLayer()
246 , m_rootChild(PlatformCALayer::create(PlatformCALayer::LayerTypeLayer, m_layerClient.get())) in FullscreenVideoController()
283 PlatformCALayer* videoLayer = PlatformCALayer::platformCALayer(m_mediaElement->platformLayer()); in enterFullscreen()
DFullscreenVideoController.h42 class PlatformCALayer; variable
164 RefPtr<WebCore::PlatformCALayer> m_rootChild;

12