Searched refs:layer (Results 101 - 125 of 666) sorted by relevance

1234567891011>>

/external/chromium_org/webkit/renderer/compositor_bindings/
H A Dweb_scrollbar_layer_impl.h35 virtual blink::WebLayer* layer();
36 virtual void setScrollLayer(blink::WebLayer* layer);
H A Dweb_image_layer_impl.h23 virtual blink::WebLayer* layer();
H A Dweb_solid_color_layer_impl.h22 virtual blink::WebLayer* layer();
/external/chromium_org/cc/layers/
H A Dnine_patch_layer_impl_unittest.cc48 scoped_ptr<NinePatchLayerImpl> layer = local
50 layer->draw_properties().visible_content_rect = visible_content_rect;
51 layer->SetBounds(layer_size);
52 layer->SetContentBounds(layer_size);
53 layer->CreateRenderSurface();
54 layer->draw_properties().render_target = layer.get();
65 layer->SetUIResourceId(uid);
66 layer->SetImageBounds(bitmap_size);
67 layer
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser_unittest.cc7 #include "cc/layers/layer.h"
19 Layer* const layer) {
29 layer->children().size()));
31 layer->bounds()));
33 layer->position()));
36 layer->draw_transform()));
38 layer->contents_opaque()));
40 layer->scrollable()));
42 layer->opacity()));
44 layer
18 LayerTreesMatch(LayerImpl* const layer_impl, Layer* const layer) argument
[all...]
/external/chromium_org/cc/trees/
H A Dlayer_tree_impl.cc14 #include "cc/layers/layer.h"
56 static LayerImpl* FindRootScrollLayerRecursive(LayerImpl* layer) { argument
57 if (!layer)
60 if (layer->scrollable())
61 return layer;
63 for (size_t i = 0; i < layer->children().size(); ++i) {
64 LayerImpl* found = FindRootScrollLayerRecursive(layer->children()[i]);
72 void LayerTreeImpl::SetRootLayer(scoped_ptr<LayerImpl> layer) { argument
75 root_layer_ = layer.Pass();
101 // Clear all data structures that have direct references to the layer tre
175 SetCurrentlyScrollingLayer(LayerImpl* layer) argument
268 ApplySentScrollDeltasFromAbortedCommitTo(LayerImpl* layer) argument
286 ApplyScrollDeltasSinceBeginMainFrameTo(LayerImpl* layer) argument
419 LayerImpl* layer = *it; local
450 RegisterLayer(LayerImpl* layer) argument
455 UnregisterLayer(LayerImpl* layer) argument
466 DidBecomeActiveRecursive(LayerImpl* layer) argument
769 AddLayerWithCopyOutputRequest(LayerImpl* layer) argument
780 RemoveLayerWithCopyOutputRequest(LayerImpl* layer) argument
[all...]
H A Docclusion_tracker.cc11 #include "cc/layers/layer.h"
101 static inline bool LayerOpacityKnown(const Layer* layer) { argument
102 return !layer->draw_opacity_is_animating();
104 static inline bool LayerOpacityKnown(const LayerImpl* layer) { argument
107 static inline bool LayerTransformsToTargetKnown(const Layer* layer) { argument
108 return !layer->draw_transform_is_animating();
110 static inline bool LayerTransformsToTargetKnown(const LayerImpl* layer) { argument
133 static inline bool LayerIsInUnsorted3dRenderingContext(const Layer* layer) { argument
134 return layer->parent() && layer
136 LayerIsInUnsorted3dRenderingContext(const LayerImpl* layer) argument
141 LayerIsHidden(const LayerType* layer) argument
396 MarkOccludedBehindLayer(const LayerType* layer) argument
598 UnoccludedContributingSurfaceContentRect( const LayerType* layer, bool for_replica, gfx::Rect content_rect) const argument
[all...]
/external/chromium_org/ui/views/corewm/
H A Dwindow_animations.cc25 #include "ui/compositor/layer.h"
118 // subsequently destroyed this object acquires ownership of the window's layer,
164 ui::Layer* layer = window->AcquireLayer(); local
165 DCHECK(layer);
166 layers_.push_back(layer);
176 if (view->layer()) {
177 ui::Layer* layer = view->RecreateLayer(); local
178 if (layer) {
179 layer->SuppressPaint();
180 layers_.push_back(layer);
191 GetTransformRelativeToRoot(ui::Layer* layer, gfx::Transform* transform) argument
198 GetLayerWorldBoundsAfterTransform(ui::Layer* layer, const gfx::Transform& transform) argument
[all...]
H A Dvisibility_controller_unittest.cc12 #include "ui/compositor/layer.h"
21 // Hiding a window in an animatable container should not hide the window's layer
42 EXPECT_TRUE(animatable->layer()->visible());
45 EXPECT_TRUE(animatable->layer()->visible());
48 EXPECT_TRUE(non_animatable->layer()->visible());
51 EXPECT_FALSE(non_animatable->layer()->visible());
H A Dshadow.cc66 image_grid_->layer()->set_name("Shadow");
67 image_grid_->layer()->SetOpacity(GetOpacityForStyle(style_));
75 ui::Layer* Shadow::layer() const { function in class:views::corewm::Shadow
76 return image_grid_->layer();
93 image_grid_->layer()->SetOpacity(GetOpacityForStyle(style));
103 image_grid_->layer()->SetOpacity(kInactiveShadowOpacity);
108 ui::ScopedLayerAnimationSettings settings(layer()->GetAnimator());
114 image_grid_->layer()->SetOpacity(kActiveShadowOpacity);
117 image_grid_->layer()->SetOpacity(kInactiveShadowOpacity);
132 image_grid_->layer()
[all...]
/external/chromium-trace/trace-viewer/src/cc/
H A Dlayer_tree_quad_stack_viewer.css7 layer-tree-quad-stack-viewer > top-controls {
19 layer-tree-quad-stack-viewer > quad-stack-viewer {
/external/chromium_org/content/browser/web_contents/aura/
H A Dwindow_slider.cc22 void DeleteLayerAndShadow(ui::Layer* layer, argument
25 delete layer;
100 ui::Layer* parent = owner_->layer()->parent();
103 parent->StackAbove(slider_.get(), owner_->layer());
105 parent->StackBelow(slider_.get(), owner_->layer());
106 slider_->SetBounds(owner_->layer()->bounds());
141 translate_layer = owner_->layer();
165 ui::Layer* sliding = delta_x_ < 0 ? slider_.get() : owner_->layer();
187 // Reset the state of the sliding layer.
189 ui::Layer* layer local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderReplica.cpp84 // Turn around and paint the parent layer. Use temporary clipRects, so that the layer doesn't end up caching clip rects
86 RenderLayer* rootPaintingLayer = layer()->transform() ? layer()->parent() : layer()->enclosingTransformedAncestor();
89 layer()->parent()->paintLayer(paintInfo.context, paintingInfo, flags);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.cpp115 m_layer->layer()->setDrawsContent(m_drawsContent && m_contentsVisible);
116 m_layer->layer()->setWebLayerClient(this);
144 void GraphicsLayer::setParent(GraphicsLayer* layer) argument
146 ASSERT(!layer || !layer->hasAncestor(this));
147 m_parent = layer;
305 void GraphicsLayer::setReplicatedByLayer(GraphicsLayer* layer) argument
308 if (m_replicaLayer != layer) {
312 if (layer)
313 layer
435 registerContentsLayer(WebLayer* layer) argument
444 unregisterContentsLayer(WebLayer* layer) argument
452 setContentsTo(WebLayer* layer) argument
1249 showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DLinkHighlight.cpp78 m_clipLayer->addChild(m_contentLayer->layer());
79 m_contentLayer->layer()->setAnimationDelegate(this);
80 m_contentLayer->layer()->setDrawsContent(true);
81 m_contentLayer->layer()->setOpacity(1);
112 // Find the nearest enclosing composited layer and attach to it. We may need to cross frame boundaries
113 // to find a suitable layer.
124 RenderLayer* renderLayer = repaintContainer->layer();
199 // Adjust for offset between target graphics layer and the node's renderer.
207 // Transform node quads in target absolute coords to local coordinates in the compositor layer.
228 m_contentLayer->layer()
337 WebLayer* LinkHighlight::layer() function in class:blink::LinkHighlight
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebExternalTextureLayer.h37 // This class represents a layer that renders a texture that is generated
47 virtual WebLayer* layer() = 0;
49 // Clears texture from the layer.
52 // Sets whether every pixel in this layer is opaque. Defaults to false.
55 // Sets whether this layer's texture has premultiplied alpha or not. Defaults to true.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_gen_mipmap.h57 uint layer, uint baseLevel, uint lastLevel, uint filter);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_flush.h50 int layer,
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_flush.h51 int layer,
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_cmp.h13 __u8 layer:4; member in struct:tcf_em_cmp
/external/libppp/src/
H A Dasync.h53 extern struct layer asynclayer;
H A Dlayer.h26 * $FreeBSD: src/usr.sbin/ppp/layer.h,v 1.3.62.1 2010/12/21 17:10:29 kensmith Exp $
45 struct layer { struct
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_gen_mipmap.h57 uint layer, uint baseLevel, uint lastLevel, uint filter);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_flush.h50 int layer,
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_flush.h51 int layer,

Completed in 538 milliseconds

1234567891011>>