Searched refs:layer (Results 1 - 25 of 258) sorted by relevance

1234567891011

/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/blackberry/
H A DScrollingCoordinatorBlackBerry.cpp44 void ScrollingCoordinatorBlackBerry::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool isContainer) argument
48 if (m_page->mainFrame() && scrollLayerForFrameView(m_page->mainFrame()->view()) == layer)
51 if (layer->platformLayer())
52 layer->platformLayer()->setIsContainerForFixedPositionLayers(isContainer);
55 void ScrollingCoordinatorBlackBerry::setLayerIsFixedToContainerLayer(GraphicsLayer* layer, bool isFixed) argument
57 if (layer->platformLayer())
58 layer->platformLayer()->setFixedPosition(isFixed);
61 void ScrollingCoordinatorBlackBerry::setLayerFixedToContainerLayerEdge(GraphicsLayer* layer, bool fixedToTop, bool fixedToLeft) argument
63 if (!layer->platformLayer())
66 layer
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebRenderLayer.cpp56 RenderLayer* rootLayer = contentRenderer->layer();
70 RefPtr<WebRenderLayer> layer = adoptRef(new WebRenderLayer(list->at(i))); local
71 array->append(layer.get());
77 WebRenderLayer::WebRenderLayer(RenderLayer* layer) argument
79 m_renderer = WebRenderObject::create(layer->renderer());
80 m_isReflection = layer->isReflection();
83 if (layer->isComposited()) {
84 RenderLayerBacking* backing = layer->backing();
110 m_absoluteBoundingBox = layer->absoluteBoundingBox();
112 m_negativeZOrderList = createArrayFromLayerList(layer
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DGraphicsLayerActor.cpp114 GraphicsLayerActor* layer = GRAPHICS_LAYER_ACTOR(object); local
118 graphicsLayerActorSetTranslateX(layer, g_value_get_float(value));
121 graphicsLayerActorSetTranslateY(layer, g_value_get_float(value));
130 GraphicsLayerActor* layer = GRAPHICS_LAYER_ACTOR(object); local
134 g_value_set_float(value, graphicsLayerActorGetTranslateX(layer));
137 g_value_set_float(value, graphicsLayerActorGetTranslateY(layer));
147 GraphicsLayerActor* layer = GRAPHICS_LAYER_ACTOR(object); local
148 GraphicsLayerActorPrivate* priv = layer->priv;
214 static gboolean graphicsLayerActorDraw(ClutterCanvas* texture, cairo_t* cr, gint width, gint height, GraphicsLayerActor* layer) argument
222 GraphicsLayerActorPrivate* priv = layer
238 graphicsLayerActorUpdateTexture(GraphicsLayerActor* layer) argument
283 GraphicsLayerActor* layer = GRAPHICS_LAYER_ACTOR(g_object_new(GRAPHICS_LAYER_TYPE_ACTOR, 0)); local
295 GraphicsLayerActor* layer = graphicsLayerActorNew(type); local
301 graphicsLayerActorSetClient(GraphicsLayerActor* layer, PlatformClutterLayerClient* client) argument
306 graphicsLayerActorGetClient(GraphicsLayerActor* layer) argument
311 graphicsLayerActorSetSurface(GraphicsLayerActor* layer, cairo_surface_t* surface) argument
318 graphicsLayerActorInvalidateRectangle(GraphicsLayerActor* layer, const FloatRect& dirtyRect) argument
328 graphicsLayerActorSetAnchorPoint(GraphicsLayerActor* layer, float x, float y, float z) argument
335 graphicsLayerActorSetScrollPosition(GraphicsLayerActor* layer, float x, float y) argument
347 graphicsLayerActorSetSublayers(GraphicsLayerActor* layer, GraphicsLayerActorList& subLayers) argument
367 graphicsLayerActorRemoveFromSuperLayer(GraphicsLayerActor* layer) argument
377 graphicsLayerActorGetLayerType(GraphicsLayerActor* layer) argument
383 graphicsLayerActorSetLayerType(GraphicsLayerActor* layer, GraphicsLayerClutter::LayerType layerType) argument
389 graphicsLayerActorSetTranslateX(GraphicsLayerActor* layer, float value) argument
396 graphicsLayerActorGetTranslateX(GraphicsLayerActor* layer) argument
402 graphicsLayerActorSetTranslateY(GraphicsLayerActor* layer, float value) argument
409 graphicsLayerActorGetTranslateY(GraphicsLayerActor* layer) argument
415 graphicsLayerActorSetDrawsContent(GraphicsLayerActor* layer, bool drawsContent) argument
427 graphicsLayerActorSetFlatten(GraphicsLayerActor* layer, bool flatten) argument
436 graphicsLayerActorSetMasksToBounds(GraphicsLayerActor* layer, bool masksToBounds) argument
445 graphicsLayerActorGetAnimationForKey(GraphicsLayerActor* layer, const String key) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/CoordinatedGraphics/
H A DWKCoordinatedScene.cpp43 WK_EXPORT uint32_t WKCoordinatedSceneGetLayerID(WKCoordinatedSceneLayer layer) argument
45 return toImpl(layer)->id();
48 WK_EXPORT void WKCoordinatedSceneScrollBy(WKCoordinatedSceneLayer layer, WKSize offset) argument
50 toImpl(layer)->scrollBy(WebCore::FloatSize(offset.width, offset.height));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/CoordinatedGraphics/
H A DWKCoordinatedSceneAPICast.h50 inline WebCore::TextureMapperLayer* toImpl(WKCoordinatedSceneLayer layer) argument
52 return reinterpret_cast<WebCore::TextureMapperLayer*>(layer);
55 inline WKCoordinatedSceneLayer toAPI(WebCore::TextureMapperLayer* layer) argument
57 return reinterpret_cast<WKCoordinatedSceneLayer>(layer);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cglayer.py31 layer = CGLayerCreateWithContext(self.context, CGSize(50, 100), None)
32 self.failUnlessIsInstance(layer, CGLayerRef)
34 v = CGLayerRetain(layer)
35 self.failUnless(v is layer)
36 CGLayerRelease(layer)
38 sz = CGLayerGetSize(layer)
43 ctx = CGLayerGetContext(layer)
47 CGContextDrawLayerInRect(self.context, CGRectMake(0, 0, 50, 50), layer)
48 CGContextDrawLayerAtPoint(self.context, CGPoint(10, 10), layer)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cglayer.py32 layer = CGLayerCreateWithContext(self.context, CGSize(50, 100), None)
33 self.assertIsInstance(layer, CGLayerRef)
35 v = CGLayerRetain(layer)
36 self.assertTrue(v is layer)
37 CGLayerRelease(layer)
39 sz = CGLayerGetSize(layer)
44 ctx = CGLayerGetContext(layer)
48 CGContextDrawLayerInRect(self.context, CGRectMake(0, 0, 50, 50), layer)
49 CGContextDrawLayerAtPoint(self.context, CGPoint(10, 10), layer)
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DWebTiledLayer.mm66 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
67 if (layer && layer->owner() && layer->owner()->platformCALayerDrawsContent())
101 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
102 if (layer && layer->owner())
103 layer->owner()->platformCALayerLayerDidDisplay(self);
108 PlatformCALayer* layer = PlatformCALayer::platformCALayer(self);
109 if (layer)
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderLayerCompositor.cpp85 // During page loading delay layer flushes up to this many seconds to allow them coalesce, reducing workload.
96 // Begin assuming the root layer will be composited so that there is
97 // something on the stack. The root layer should also never get an
102 void add(const RenderLayer* layer, const IntRect& bounds) argument
109 m_layers.add(layer);
112 bool contains(const RenderLayer* layer) argument
114 return m_layers.contains(layer);
321 void RenderLayerCompositor::notifyFlushRequired(const GraphicsLayer* layer) argument
323 scheduleLayerFlush(layer->canThrottleLayerFlush());
383 void RenderLayerCompositor::didFlushChangesForLayer(RenderLayer* layer, cons argument
612 logLayerInfo(const RenderLayer* layer, int depth) argument
650 updateBacking(RenderLayer* layer, CompositingChangeRepaint shouldRepaint) argument
750 updateLayerCompositingState(RenderLayer* layer, CompositingChangeRepaint shouldRepaint) argument
762 repaintOnCompositingChange(RenderLayer* layer) argument
782 repaintInCompositedAncestor(RenderLayer* layer, const LayoutRect& rect) argument
805 calculateCompositedBounds(const RenderLayer* layer, const RenderLayer* ancestorLayer) const argument
841 addToOverlapMap(OverlapMap& overlapMap, RenderLayer* layer, IntRect& layerBounds, bool& boundsComputed) argument
864 addToOverlapMapRecursive(OverlapMap& overlapMap, RenderLayer* layer, RenderLayer* ancestorLayer) argument
922 computeCompositingRequirements(RenderLayer* ancestorLayer, RenderLayer* layer, OverlapMap* overlapMap, CompositingState& compositingState, bool& layersChanged, bool& descendantHas3DTransform) argument
1139 removeCompositedChildren(RenderLayer* layer) argument
1157 rebuildCompositingLayerTree(RenderLayer* layer, Vector<GraphicsLayer*>& childLayersOfEnclosingLayer, int depth) argument
1334 scrollingLayerDidChange(RenderLayer* layer) argument
1421 updateLayerTreeGeometry(RenderLayer* layer, int depth) argument
1474 updateCompositingDescendantGeometry(RenderLayer* compositingAncestor, RenderLayer* layer, bool compositedChildrenOnly) argument
1530 recursiveRepaintLayer(RenderLayer* layer, const IntRect* rect) argument
1642 clearBackingForLayerIncludingDescendants(RenderLayer* layer) argument
1742 needsToBeComposited(const RenderLayer* layer, RenderLayer::ViewportConstrainedNotCompositedReason* viewportConstrainedNotCompositedReason) const argument
1753 requiresCompositingLayer(const RenderLayer* layer, RenderLayer::ViewportConstrainedNotCompositedReason* viewportConstrainedNotCompositedReason) const argument
1783 requiresOwnBackingStore(const RenderLayer* layer, const RenderLayer* compositingAncestorLayer, const IntRect& layerCompositedBoundsInAncestor, const IntRect& ancestorCompositedBounds) const argument
1908 logReasonsForCompositing(const RenderLayer* layer) argument
2168 RenderLayer* layer = toRenderBoxModelObject(renderer)->layer(); local
2218 isViewportConstrainedFixedOrStickyLayer(const RenderLayer* layer) argument
2234 requiresCompositingForPosition(RenderObject* renderer, const RenderLayer* layer, RenderLayer::ViewportConstrainedNotCompositedReason* viewportConstrainedNotCompositedReason) const argument
2968 RenderLayer* layer = m_renderView->layer(); local
3051 updateViewportConstraintStatus(RenderLayer* layer) argument
3059 addViewportConstrainedLayer(RenderLayer* layer) argument
3065 removeViewportConstrainedLayer(RenderLayer* layer) argument
3135 nearestScrollingCoordinatorAncestor(RenderLayer* layer) argument
3149 registerOrUpdateViewportConstrainedLayer(RenderLayer* layer) argument
3186 unregisterViewportConstrainedLayer(RenderLayer* layer) argument
[all...]
H A DRenderLayerModelObject.cpp48 // Our layer should have been destroyed and cleared by now
88 // RenderObject::willBeDestroyed calls back to destroyLayer() for layer destruction
98 s_layerWasSelfPainting = layer()->isSelfPaintingLayer();
108 layer()->repaintIncludingDescendants();
110 layer()->clearClipRectsIncludingDescendants();
116 // When a layout hint happens, we go ahead and do a repaint of the layer, since the layer could
130 layer()->repaintIncludingDescendants();
132 // If we don't have a layer yet, but we are going to get one because of transform or opacity,
148 if (!layer()
[all...]
H A DRenderLayerFilterInfo.cpp55 RenderLayerFilterInfo* RenderLayerFilterInfo::filterInfoForRenderLayer(const RenderLayer* layer) argument
59 RenderLayerFilterInfoMap::iterator iter = s_filterMap->find(layer);
63 RenderLayerFilterInfo* RenderLayerFilterInfo::createFilterInfoForRenderLayerIfNeeded(RenderLayer* layer) argument
68 RenderLayerFilterInfoMap::iterator iter = s_filterMap->find(layer);
70 ASSERT(layer->hasFilterInfo());
74 RenderLayerFilterInfo* filter = new RenderLayerFilterInfo(layer);
75 s_filterMap->set(layer, filter);
76 layer->setHasFilterInfo(true);
80 void RenderLayerFilterInfo::removeFilterInfoForRenderLayer(RenderLayer* layer) argument
84 RenderLayerFilterInfo* filter = s_filterMap->take(layer);
97 RenderLayerFilterInfo(RenderLayer* layer) argument
[all...]
H A DRenderReplica.cpp81 // Turn around and paint the parent layer. Use temporary clipRects, so that the layer doesn't end up caching clip rects
83 RenderLayer* rootPaintingLayer = layer()->transform() ? layer()->parent() : layer()->enclosingTransformedAncestor();
86 layer()->parent()->paintLayer(paintInfo.context, paintingInfo, flags);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DInRegionScroller.cpp151 // Position is offset on the layer by the layer anchor point.
163 RenderLayer* layer = 0; local
175 layer = backing->owningLayer();
178 layer = compositor->rootRenderLayer();
186 layer = node->renderer()->enclosingLayer();
189 if (!layer)
192 calculateActiveAndShrinkCachedScrollableAreas(layer);
195 return setLayerScrollPosition(layer, scrollPosition);
198 void InRegionScrollerPrivate::calculateActiveAndShrinkCachedScrollableAreas(RenderLayer* layer) argument
226 RenderLayer* layer = scrollable->layer(); local
365 clipAndCreateInRegionScrollableArea(RenderLayer* layer) argument
378 setLayerScrollPosition(RenderLayer* layer, const IntPoint& scrollPosition) argument
475 parentLayer(RenderLayer* layer) argument
495 isNonRenderViewFixedPositionedContainer(RenderLayer* layer) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DCanvasLayerWebKitThread.cpp62 void CanvasLayerCompositingThreadClient::drawTextures(LayerCompositingThread* layer, const GLES2Program&, double, const FloatRect& /*clipRect*/) argument
67 TransformationMatrix dt = layer->drawTransform();
68 dt.translate(-layer->bounds().width() / 2.0, -layer->bounds().height() / 2.0);
69 dt.scaleNonUniform(static_cast<double>(layer->bounds().width()) / m_size.width(), static_cast<double>(layer->bounds().height()) / m_size.height());
71 BlackBerry::Platform::Graphics::SourceOver, static_cast<unsigned char>(layer->drawOpacity() * 255));
107 void CanvasLayerWebKitThread::clearBuffer(CanvasLayerWebKitThread* layer) argument
109 layer->m_compositingThreadClient->clearBuffer();
H A DLayerRenderer.cpp335 // Don't render the root layer, the BlackBerry port uses the BackingStore to draw the
336 // root layer.
472 LayerCompositingThread* layer = surfaceLayers[i].get(); local
473 LayerRendererSurface* surface = layer->layerRendererSurface();
488 if (layer->filterOperationsChanged()) {
489 layer->setFilterOperationsChanged(false);
490 layer->setFilterActions(m_filterRenderer->actionsForOperations(surface, layer->filters().operations()));
492 m_filterRenderer->applyActions(m_fbo, layer, layer
506 addLayer(LayerCompositingThread* layer) argument
511 removeLayer(LayerCompositingThread* layer) argument
520 addLayerToReleaseTextureResourcesList(LayerCompositingThread* layer) argument
597 drawDebugBorder(LayerCompositingThread* layer) argument
623 drawHolePunchRect(LayerCompositingThread* layer) argument
636 prepareFrameRecursive(LayerCompositingThread* layer, double animationTime, bool isContextCurrent) argument
662 updateLayersRecursive(LayerCompositingThread* layer, const TransformationMatrix& matrix, const TransformationMatrix& projectionMatrix, Vector<RefPtr<LayerCompositingThread> >& surfaceLayers, float opacity, FloatRect clipRect) argument
868 LayerCompositingThread* layer = layers[i]; local
879 compositeLayersRecursive(LayerCompositingThread* layer, int stencilValue, FloatRect clipRect) argument
[all...]
H A DEGLImageLayerCompositingThreadClient.cpp48 void EGLImageLayerCompositingThreadClient::drawTextures(LayerCompositingThread* layer, const GLES2Program& program, double /*scale*/, const FloatRect& /*clipRect*/) argument
56 glUniform1f(program.opacityLocation(), layer->drawOpacity());
57 glVertexAttribPointer(program.positionLocation(), 2, GL_FLOAT, GL_FALSE, 0, layer->transformedBounds().data());
58 glVertexAttribPointer(program.texCoordLocation(), 2, GL_FLOAT, GL_FALSE, 0, layer->textureCoordinates(LayerCompositingThread::UpsideDown).data());
60 glDrawArrays(GL_TRIANGLE_FAN, 0, layer->transformedBounds().size());
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebRenderLayer.mm43 - (id)initWithRenderLayer:(RenderLayer *)layer;
50 + (NSString *)nameForLayer:(RenderLayer*)layer
52 RenderObject* renderer = layer->renderer();
71 if (layer->isReflection())
77 + (NSString *)compositingInfoForLayer:(RenderLayer*)layer
79 if (!layer->isComposited())
84 RenderLayerBacking* backing = layer->backing();
90 layerType = @"composited: tiled layer";
96 layerType = @"composited: container layer";
110 - (id)initWithRenderLayer:(RenderLayer*)layer
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/coordinated/
H A DCoordinatedGraphicsScene.cpp53 static bool layerShouldHaveBackingStore(TextureMapperLayer* layer) argument
55 return layer->drawsContent() && layer->contentsAreVisible() && !layer->size().isEmpty();
87 TextureMapperLayer* layer = currentRootLayer;
89 if (!layer)
92 layer->setTextureMapper(m_textureMapper.get());
93 layer->applyAnimationsRecursively();
109 layer->paint();
114 if (layer
124 TextureMapperLayer* layer = rootLayer(); local
171 createCanvasIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
182 syncCanvasIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
199 destroyCanvasIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
209 setLayerRepaintCountIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
217 setLayerChildrenIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
233 setLayerFiltersIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
289 TextureMapperLayer* layer = layerByID(id); local
401 OwnPtr<TextureMapperLayer> layer = m_layers.take(layerID); local
418 TextureMapperLayer* layer = layerByID(layerID); local
423 prepareContentBackingStore(TextureMapperLayer* layer) argument
434 createBackingStoreIfNeeded(TextureMapperLayer* layer) argument
444 removeBackingStoreIfNeeded(TextureMapperLayer* layer) argument
453 resetBackingStoreSizeToLayerSize(TextureMapperLayer* layer) argument
461 createTilesIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
473 removeTilesIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
488 updateTilesIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
585 assignImageBackingToLayer(TextureMapperLayer* layer, CoordinatedImageBackingID imageID) argument
719 setLayerAnimationsIfNeeded(TextureMapperLayer* layer, const CoordinatedGraphicsLayerState& state) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/coordinatedgraphics/
H A DScrollingCoordinatorCoordinatedGraphics.cpp99 CoordinatedGraphicsLayer* layer = toCoordinatedGraphicsLayer(scrollLayerForScrollableArea(scrollableArea)); local
100 if (!layer)
103 layer->setScrollableArea(scrollableArea);
108 CoordinatedGraphicsLayer* layer = toCoordinatedGraphicsLayer(scrollLayerForScrollableArea(scrollableArea)); local
109 if (!layer)
112 layer->setScrollableArea(0);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DFrameLayers.cpp66 void FrameLayers::addLayer(Frame* frame, LayerWebKitThread* layer) argument
68 // If we have main frame layer we don't accept other layers.
74 ASSERT(frame && layer && !m_frameLayers.contains(frame));
76 m_frameLayers.add(frame, layer);
85 if (m_rootLayer != layer)
86 m_rootLayer->addSublayer(layer);
94 LayerWebKitThread* layer = it->value; local
95 if (layer->superlayer())
96 layer->removeFromSuperlayer();
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSToStyleMap.cpp64 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
67 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
77 layer->setAttachment(FixedBackgroundAttachment);
80 layer->setAttachment(ScrollBackgroundAttachment);
83 layer->setAttachment(LocalBackgroundAttachment);
90 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
93 layer->setClip(FillLayer::initialFillClip(layer->type()));
101 layer
104 mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
118 mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
132 mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
147 mapFillImage(CSSPropertyID property, FillLayer* layer, CSSValue* value) argument
157 mapFillRepeatX(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
171 mapFillRepeatY(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
185 mapFillSize(CSSPropertyID, FillLayer* layer, CSSValue* value) argument
230 mapFillXPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) argument
266 mapFillYPosition(CSSPropertyID propertyID, FillLayer* layer, CSSValue* value) argument
316 mapAnimationDirection(Animation* layer, CSSValue* value) argument
357 mapAnimationFillMode(Animation* layer, CSSValue* value) argument
401 mapAnimationName(Animation* layer, CSSValue* value) argument
418 mapAnimationPlayState(Animation* layer, CSSValue* value) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/mac/
H A DWKBundlePageBannerMac.h38 WK_EXPORT WKBundlePageBannerRef WKBundlePageBannerCreateBannerWithCALayer(CALayer *layer, int height, WKBundlePageBannerClient * client);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreFullScreenPlaceholderView.mm46 [self setLayer:[CALayer layer]];
66 [[self layer] setContents:contents];
71 return [[self layer] contents];
81 [[self layer] setFilters:[NSArray arrayWithObject:filter]];
83 [[self layer] setFilters:nil];
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp68 static AbstractCACFLayerTreeHost* layerTreeHostForLayer(const PlatformCALayer* layer) argument
70 // We need the AbstractCACFLayerTreeHost associated with this layer, which is stored in the UserData of the CACFContext
71 void* userData = wkCACFLayerGetContextUserData(layer->platformLayer());
78 static PlatformCALayerWinInternal* intern(const PlatformCALayer* layer) argument
80 return static_cast<PlatformCALayerWinInternal*>(CACFLayerGetUserData(layer->platformLayer()));
83 static PlatformCALayerWinInternal* intern(void* layer) argument
85 return static_cast<PlatformCALayerWinInternal*>(CACFLayerGetUserData(static_cast<CACFLayerRef>(layer)));
106 PlatformCALayer* layer = PlatformCALayer::platformCALayer(caLayer); local
107 if (layer && layer
111 PlatformCALayer(LayerType layerType, PlatformLayer* layer, PlatformCALayerClient* owner) argument
207 resubmitAllAnimations(PlatformCALayer* layer) argument
277 appendSublayer(PlatformCALayer* layer) argument
283 insertSublayer(PlatformCALayer* layer, size_t index) argument
366 setMask(PlatformCALayer* layer) argument
687 printLayer(const PlatformCALayer* layer, int indent) argument
[all...]
/macosx-10.9.5/screen-22/screen/
H A Dextern.h317 extern void ResizeLayer __P((struct layer *, int, int, struct display *));
318 extern int MayResizeLayer __P((struct layer *));
408 extern void BGotoPos __P((struct layer *, int, int));
409 extern void BPutChar __P((struct layer *, struct mchar *, int, int));
410 extern void BPutStr __P((struct layer *, char *, int, struct mchar *, int, int));
411 extern void BCDisplayLine __P((struct layer *, struct mline *, int, int, int, int));
417 /* layer.c */
418 extern void LGotoPos __P((struct layer *, int, int));
419 extern void LPutChar __P((struct layer *, struct mchar *, int, int));
420 extern void LInsChar __P((struct layer *, struc
[all...]

Completed in 200 milliseconds

1234567891011