/external/webkit/Source/WebCore/platform/graphics/ca/win/ |
D | PlatformCALayerWin.cpp | 43 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 …]
|
D | PlatformCALayerWinInternal.h | 41 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;
|
D | CACFLayerTreeHost.h | 52 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;
|
D | PlatformCALayerWinInternal.cpp | 45 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 …]
|
D | AbstractCACFLayerTreeHost.h | 35 class PlatformCALayer; variable 39 virtual PlatformCALayer* rootLayer() const = 0; 40 virtual void addPendingAnimatedLayer(PassRefPtr<PlatformCALayer>) = 0;
|
D | CACFLayerTreeHost.cpp | 130 , 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()
|
D | WKCACFViewLayerTreeHost.h | 47 virtual void initializeContext(void* userData, PlatformCALayer*);
|
D | LegacyCACFLayerTreeHost.h | 57 virtual void initializeContext(void* userData, PlatformCALayer*);
|
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
D | PlatformCALayerMac.mm | 30 #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/ |
D | PlatformCALayer.h | 44 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 …]
|
D | GraphicsLayerCA.h | 42 class PlatformCALayer; variable 57 virtual PlatformCALayer* platformCALayer() const { return primaryLayer(); } in platformCALayer() 133 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) { } in platformCALayerLayoutSublayersOfLayer() argument 149 …PlatformCALayer* 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 …]
|
D | GraphicsLayerCA.cpp | 260 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 …]
|
D | PlatformCALayerClient.h | 44 class PlatformCALayer; variable 48 virtual void platformCALayerLayoutSublayersOfLayer(PlatformCALayer*) = 0;
|
D | PlatformCAAnimation.h | 58 friend class PlatformCALayer;
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | WebTiledLayer.mm | 34 #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);
|
D | WebLayer.mm | 34 #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);
|
D | WebLayer.h | 35 class PlatformCALayer; variable 52 void drawLayerContents(CGContextRef, CALayer *, WebCore::PlatformCALayer*);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | MediaPlayerPrivateFullscreenWindow.h | 46 class PlatformCALayer; variable 66 PlatformCALayer* rootChildLayer() const { return m_rootChild.get(); } in rootChildLayer() 67 void setRootChildLayer(PassRefPtr<PlatformCALayer>); 77 RefPtr<PlatformCALayer> m_rootChild;
|
D | MediaPlayerPrivateQuickTimeVisualContext.h | 54 class PlatformCALayer; variable 180 RefPtr<PlatformCALayer> m_qtVideoLayer; 181 RefPtr<PlatformCALayer> m_transformLayer;
|
D | MediaPlayerPrivateFullscreenWindow.cpp | 98 void MediaPlayerPrivateFullscreenWindow::setRootChildLayer(PassRefPtr<PlatformCALayer> rootChild) in setRootChildLayer() 112 PlatformCALayer* rootLayer = m_rootChild->rootLayer(); in setRootChildLayer() 161 PlatformCALayer* rootLayer = m_rootChild->rootLayer(); in wndProc()
|
D | MediaPlayerPrivateQuickTimeVisualContext.cpp | 98 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/ |
D | LayerTreeHostCAWin.h | 69 virtual WebCore::PlatformCALayer* rootLayer() const; 70 virtual void addPendingAnimatedLayer(PassRefPtr<WebCore::PlatformCALayer>); 75 HashSet<RefPtr<WebCore::PlatformCALayer> > m_pendingAnimatedLayers;
|
D | LayerTreeHostCAWin.cpp | 246 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/ |
D | FullscreenVideoController.cpp | 182 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()
|
D | FullscreenVideoController.h | 42 class PlatformCALayer; variable 164 RefPtr<WebCore::PlatformCALayer> m_rootChild;
|