Searched refs:layerType (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DGraphicsLayerCARemote.cpp46 PassRefPtr<PlatformCALayer> GraphicsLayerCARemote::createPlatformCALayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* owner) argument
48 return PlatformCALayerRemote::create(layerType, owner, m_context);
H A DPlatformCALayerRemoteCustom.mm52 context.layerWasCreated(*layer, layer->layerType());
57 PlatformCALayerRemoteCustom::PlatformCALayerRemoteCustom(LayerType layerType, PlatformLayer * customLayer, PlatformCALayerClient* owner, RemoteLayerTreeContext& context)
58 : PlatformCALayerRemote(layerType, owner, context)
77 m_providesContents = layerType == LayerTypeWebGLLayer;
100 if (layerType() == LayerTypeAVPlayerLayer) {
109 } else if (layerType() == LayerTypeWebGLLayer) {
115 RefPtr<PlatformCALayerRemote> clone = adoptRef(new PlatformCALayerRemoteCustom(layerType(), clonedLayer.get(), owner, *context()));
116 context()->layerWasCreated(*clone, clone->layerType());
H A DPlatformCALayerRemoteTiledBacking.cpp39 PlatformCALayerRemoteTiledBacking::PlatformCALayerRemoteTiledBacking(LayerType layerType, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) argument
40 : PlatformCALayerRemote(layerType, owner, context)
H A DPlatformCALayerRemote.cpp48 PassRefPtr<PlatformCALayerRemote> PlatformCALayerRemote::create(LayerType layerType, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) argument
52 if (layerType == LayerTypeTiledBackingLayer || layerType == LayerTypePageTiledBackingLayer)
53 layer = adoptRef(new PlatformCALayerRemoteTiledBacking(layerType, owner, context));
55 layer = adoptRef(new PlatformCALayerRemote(layerType, owner, context));
57 context.layerWasCreated(*layer, layerType);
71 context.layerWasCreated(*layer, other.layerType());
76 PlatformCALayerRemote::PlatformCALayerRemote(LayerType layerType, PlatformCALayerClient* owner, RemoteLayerTreeContext& context) argument
77 : PlatformCALayer(layerType, owner)
88 : PlatformCALayer(other.layerType(), owne
688 createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/
H A DPlatformCALayer.cpp45 PlatformCALayer::PlatformCALayer(LayerType layerType, PlatformCALayerClient* owner) argument
46 : m_layerType(layerType)
95 PassRefPtr<PlatformCALayer> PlatformCALayer::createCompatibleLayerOrTakeFromPool(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client, IntSize size) argument
104 layer = createCompatibleLayer(layerType, client);
H A DPlatformCALayer.h99 bool usesTiledBackingLayer() const { return layerType() == LayerTypePageTiledBackingLayer || layerType() == LayerTypeTiledBackingLayer; }
110 LayerType layerType() const { return m_layerType; } function in class:WebCore::PlatformCALayer
229 PassRefPtr<PlatformCALayer> createCompatibleLayerOrTakeFromPool(LayerType layerType, PlatformCALayerClient* client, IntSize);
H A DGraphicsLayerCA.cpp314 PassRefPtr<PlatformCALayer> GraphicsLayerCA::createPlatformCALayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* owner) argument
317 return PlatformCALayerMac::create(layerType, owner);
319 return PlatformCALayerWin::create(layerType, owner);
352 PlatformCALayer::LayerType layerType = PlatformCALayer::LayerTypeWebLayer; local
354 layerType = PlatformCALayer::LayerTypePageTiledBackingLayer;
358 m_layer = createPlatformCALayer(layerType, this);
1020 if (m_layer->layerType() == PlatformCALayer::LayerTypeTiledBackingLayer)
1215 if (affectedByTransformAnimation && m_layer->layerType() == PlatformCALayer::LayerTypeTiledBackingLayer)
1724 if (m_structuralLayer && m_structuralLayer->layerType() != PlatformCALayer::LayerTypeTransformLayer)
1732 if (m_structuralLayer && m_structuralLayer->layerType() !
2996 PlatformCALayer::LayerType layerType = useTiledLayer ? PlatformCALayer::LayerTypeTiledBackingLayer : PlatformCALayer::LayerTypeWebLayer; local
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebRenderLayer.mm82 NSString *layerType = @"";
86 layerType = @"composited";
89 layerType = @"composited: tiled layer";
92 layerType = @"composited for plug-in, video or WebGL";
95 layerType = @"composited: container layer";
100 layerType = [layerType stringByAppendingString:@" (clipping)"];
103 layerType = [layerType stringByAppendingString:@" (clipped)"];
105 return layerType;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp48 static bool layerTypeIsTiled(const PlatformCALayer::LayerType layerType) argument
50 return layerType == PlatformCALayer::LayerTypeWebTiledLayer
51 || layerType == PlatformCALayer::LayerTypePageTiledBackingLayer
52 || layerType == PlatformCALayer::LayerTypeTiledBackingLayer;
60 if (layerTypeIsTiled(m_owner->layerType())) {
165 if (layerTypeIsTiled(m_owner->layerType())) {
179 } else if (owner()->layerType() == PlatformCALayer::LayerTypeWebLayer) {
220 if (layerTypeIsTiled(m_owner->layerType())) {
237 if (layerTypeIsTiled(m_owner->layerType())) {
252 if (layerTypeIsTiled(m_owner->layerType())) {
[all...]
H A DPlatformCALayerWin.cpp43 PassRefPtr<PlatformCALayer> PlatformCALayerWin::create(LayerType layerType, PlatformCALayerClient* owner) argument
45 return adoptRef(new PlatformCALayerWin(layerType, 0, owner));
128 PlatformCALayerWin::PlatformCALayerWin(LayerType layerType, PlatformLayer* layer, PlatformCALayerClient* owner) argument
129 : PlatformCALayer(layer ? LayerTypeCustom : layerType, owner)
138 m_layer = adoptCF(CACFLayerCreate(toCACFLayerType(layerType)));
170 PlatformCALayer::LayerType type = (layerType() == PlatformCALayer::LayerTypeTransformLayer) ?
606 switch (layer->layerType()) {
704 PassRefPtr<PlatformCALayer> PlatformCALayerWin::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const argument
706 return PlatformCALayerWin::create(layerType, client);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/mac/
H A DPlatformCALayerMac.mm71 PassRefPtr<PlatformCALayer> PlatformCALayerMac::create(LayerType layerType, PlatformCALayerClient* owner)
73 return adoptRef(new PlatformCALayerMac(layerType, owner));
190 PlatformCALayerMac::PlatformCALayerMac(LayerType layerType, PlatformCALayerClient* owner)
191 : PlatformCALayer(layerType, owner)
196 switch (layerType) {
273 switch (layerType()) {
981 PassRefPtr<PlatformCALayer> PlatformCALayerMac::createCompatibleLayer(PlatformCALayer::LayerType layerType, PlatformCALayerClient* client) const
983 return PlatformCALayerMac::create(layerType, client);
/macosx-10.10/IODVDStorageFamily-35/
H A DIODVDTypes.h163 UInt8 layerType:4; member in struct:DVDPhysicalFormatInfo
184 UInt8 layerType:4; member in struct:DVDPhysicalFormatInfo

Completed in 209 milliseconds