HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 1 - 25 of 860) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libppp/src/
sync.h 29 extern struct layer synclayer;
tcpmss.h 29 extern struct layer tcpmsslayer;
acf.h 33 extern struct layer acflayer;
vjcomp.h 36 extern struct layer vjlayer;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerManager.cpp 84 for (Canvas2DLayerBridge* layer = m_layerList.head(); layer; layer = layer->next())
85 layer->limitPendingFrames();
88 void Canvas2DLayerManager::layerDidDraw(Canvas2DLayerBridge* layer)
90 if (isInList(layer)) {
91 if (layer != m_layerList.head()) {
92 m_layerList.remove(layer);
93 m_layerList.push(layer); // Set as MR
134 Canvas2DLayerBridge* layer = m_layerList.tail(); \/\/ LRU local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/painting/
ContinuousPainter.cpp 40 void ContinuousPainter::setNeedsDisplayRecursive(GraphicsLayer* layer, PageOverlayList* pageOverlays)
42 if (!layer)
45 if (pageOverlays && pageOverlays->findGraphicsLayer(layer) != WTF::kNotFound)
49 layer->setNeedsDisplay();
51 setNeedsDisplayRecursive(layer->maskLayer(), pageOverlays);
52 setNeedsDisplayRecursive(layer->contentsClippingMaskLayer(), pageOverlays);
53 setNeedsDisplayRecursive(layer->replicaLayer(), pageOverlays);
55 const Vector<GraphicsLayer*>& children = layer->children();
  /external/chromium_org/ui/compositor/
dip_util.cc 10 #include "ui/compositor/layer.h"
21 float GetDeviceScaleFactor(const Layer* layer) {
22 return layer->device_scale_factor();
25 gfx::Point ConvertPointToDIP(const Layer* layer,
28 gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
31 gfx::PointF ConvertPointToDIP(const Layer* layer,
33 return gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer));
    [all...]
dip_util.h 19 class Layer;
21 COMPOSITOR_EXPORT float GetDeviceScaleFactor(const Layer* layer);
26 const Layer* layer,
29 const Layer* layer,
32 const Layer* layer,
35 const Layer* layer
    [all...]
debug_utils.cc 16 #include "ui/compositor/layer.h"
26 void PrintLayerHierarchyImp(const Layer* layer,
32 layer->transform().TransformPointReverse(&mouse_location);
33 bool mouse_inside_layer_bounds = layer->bounds().Contains(mouse_location);
34 mouse_location.Offset(-layer->bounds().x(), -layer->bounds().y());
42 *out << UTF8ToWide(layer->name()) << L' ' << layer; local
44 switch (layer->type())
    [all...]
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl_unittest.cc 16 void CheckDrawLayer(HeadsUpDisplayLayerImpl* layer,
21 bool will_draw = layer->WillDraw(draw_mode, resource_provider);
23 layer->AppendQuads(&quad_culler, &data);
24 layer->UpdateHudTexture(draw_mode, resource_provider);
26 layer->DidDraw(resource_provider);
37 scoped_ptr<HeadsUpDisplayLayerImpl> layer = local
39 layer->SetContentBounds(gfx::Size(100, 100));
43 layer.get(), host_impl.resource_provider(), DRAW_MODE_HARDWARE);
46 layer->DidLoseOutputSurface();
49 CheckDrawLayer(layer.get()
    [all...]
ui_resource_layer_impl_unittest.cc 29 scoped_ptr<UIResourceLayerImpl> layer = local
31 layer->draw_properties().visible_content_rect = visible_content_rect;
32 layer->SetBounds(layer_size);
33 layer->SetContentBounds(layer_size);
34 layer->CreateRenderSurface();
35 layer->draw_properties().render_target = layer.get();
48 layer->SetUIResourceId(uid);
50 return layer.Pass();
53 void QuadSizeTest(scoped_ptr<UIResourceLayerImpl> layer,
73 scoped_ptr<UIResourceLayerImpl> layer = GenerateUIResourceLayer(&host_impl, local
112 scoped_ptr<UIResourceLayerImpl> layer = GenerateUIResourceLayer(&host_impl, local
138 scoped_ptr<UIResourceLayerImpl> layer = GenerateUIResourceLayer( local
    [all...]
solid_color_layer_impl_unittest.cc 30 scoped_ptr<SolidColorLayerImpl> layer = local
32 layer->draw_properties().visible_content_rect = visible_content_rect;
33 layer->SetBounds(layer_size);
34 layer->SetContentBounds(layer_size);
35 layer->CreateRenderSurface();
36 layer->draw_properties().render_target = layer.get();
39 layer->AppendQuads(&quad_culler, &data);
54 scoped_ptr<SolidColorLayerImpl> layer = local
56 layer->draw_properties().visible_content_rect = visible_content_rect
80 scoped_ptr<SolidColorLayerImpl> layer = local
102 scoped_refptr<SolidColorLayer> layer = SolidColorLayer::Create(); local
    [all...]
tiled_layer_impl_unittest.cc 29 scoped_ptr<TiledLayerImpl> layer = local
34 layer->SetTilingData(*tiler);
35 layer->set_skips_draw(false);
36 layer->draw_properties().visible_content_rect =
38 layer->draw_properties().opacity = 1;
39 layer->SetBounds(layer_size);
40 layer->SetContentBounds(layer_size);
41 layer->CreateRenderSurface();
42 layer->draw_properties().render_target = layer.get()
52 scoped_ptr<TiledLayerImpl> layer = local
76 scoped_ptr<TiledLayerImpl> layer = local
100 scoped_ptr<TiledLayerImpl> layer = local
113 scoped_ptr<TiledLayerImpl> layer = local
123 scoped_ptr<TiledLayerImpl> layer = local
139 scoped_ptr<TiledLayerImpl> layer = local
157 scoped_ptr<TiledLayerImpl> layer = local
285 scoped_ptr<TiledLayerImpl> layer = CreateLayerNoTiles( local
    [all...]
  /external/chromium_org/content/public/browser/android/
content_view_layer_renderer.h 19 virtual void AttachLayer(blink::WebLayer* layer) = 0;
20 virtual void DetachLayer(blink::WebLayer* layer) = 0;
  /external/chromium_org/third_party/WebKit/public/platform/
WebImageLayer.h 39 virtual WebLayer* layer() = 0;
WebSolidColorLayer.h 39 virtual WebLayer* layer() = 0;
  /frameworks/base/libs/hwui/
LayerCache.cpp 37 INIT_LOGD(" Setting layer cache size to %sMB", property);
40 INIT_LOGD(" Using default layer cache size of %.2fMB", DEFAULT_LAYER_CACHE_SIZE);
77 void LayerCache::deleteLayer(Layer* layer) {
78 if (layer) {
79 LAYER_LOGD("Destroying layer %dx%d, fbo %d", layer->getWidth(), layer->getHeight(),
80 layer->getFbo());
81 mSize -= layer->getWidth() * layer->getHeight() * 4
95 Layer* layer = NULL; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
GraphicsLayerFactoryChromium.cpp 47 OwnPtr<GraphicsLayer> layer = adoptPtr(new GraphicsLayer(client)); local
48 m_webView->registerForAnimations(layer->platformLayer());
49 return layer.release();
  /external/chromium_org/cc/trees/
tree_synchronizer.cc 13 #include "cc/layers/layer.h"
63 Layer* layer_root,
81 LayerType* layer,
83 scoped_ptr<LayerImpl> layer_impl = old_layers->take(layer->id());
86 layer_impl = layer->CreateLayerImpl(tree_impl);
88 (*new_layers)[layer->id()] = layer_impl.get();
96 LayerType* layer,
98 if (!layer)
102 ReuseOrCreateLayerImpl(new_layers, old_layers, layer, tree_impl);
105 for (size_t i = 0; i < layer->children().size(); ++i)
    [all...]
layer_tree_host_common.cc 12 #include "cc/layers/layer.h"
44 static gfx::Vector2dF GetEffectiveScrollDelta(LayerType* layer) {
45 gfx::Vector2dF scroll_delta = layer->ScrollDelta();
47 // compositor thread since the commit for this layer tree's source frame.
50 if (layer->scroll_parent())
51 scroll_delta += layer->scroll_parent()->ScrollDelta();
56 static gfx::Vector2dF GetEffectiveTotalScrollOffset(LayerType* layer) {
57 gfx::Vector2dF offset = layer->TotalScrollOffset();
60 // scroll children's positions by the main thread layer positioning code.
61 if (layer->scroll_parent()
    [all...]
  /external/chromium_org/ash/wm/
window_animations_unittest.cc 14 #include "ui/compositor/layer.h"
22 using ui::Layer;
73 EXPECT_TRUE(window->layer()->visible());
80 EXPECT_EQ(0.0f, window->layer()->GetTargetOpacity());
81 EXPECT_FALSE(window->layer()->GetTargetVisibility());
82 EXPECT_FALSE(window->layer()->visible());
89 EXPECT_EQ(0.0f, window->layer()->GetTargetBrightness());
90 EXPECT_EQ(0.0f, window->layer()->GetTargetGrayscale());
91 EXPECT_TRUE(window->layer()->visible());
96 window->layer()->GetAnimator())
175 Layer* layer = window->layer(); local
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
layer_viewer.css 6 layer-viewer {
14 layer-viewer > layer-tree-quad-stack-viewer {
21 layer-viewer > layer-viewer-analysis {
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_content_layer_impl.cc 34 layer_->layer()->SetIsDrawable(true);
35 can_use_lcd_text_ = layer_->layer()->can_use_lcd_text();
40 static_cast<PictureLayer*>(layer_->layer())->ClearClient();
42 static_cast<ContentLayer*>(layer_->layer())->ClearClient();
45 blink::WebLayer* WebContentLayerImpl::layer() { return layer_.get(); } function in class:webkit::WebContentLayerImpl
48 layer_->layer()->SetDoubleSided(double_sided);
52 layer_->layer()->SetDrawCheckerboardForMissingTiles(enable);
71 // here can get out of sync with that in the layer.
72 if (can_use_lcd_text_ == layer_->layer()->can_use_lcd_text())
76 if (layer_->layer()->can_use_lcd_text() && ignore_lcd_text_change_
    [all...]
web_layer_impl_fixed_bounds_unittest.cc 24 scoped_ptr<WebLayerImplFixedBounds> layer(new WebLayerImplFixedBounds());
25 layer->setAnchorPoint(WebFloatPoint(0, 0));
26 layer->SetFixedBounds(gfx::Size(100, 100));
27 layer->setBounds(WebSize(100, 100));
28 EXPECT_EQ(WebSize(100, 100), layer->bounds());
29 EXPECT_EQ(gfx::Size(100, 100), layer->layer()->bounds());
30 EXPECT_EQ(gfx::Transform(), layer->layer()->transform());
40 void CheckBoundsScaleSimple(WebLayerImplFixedBounds* layer,
    [all...]
  /external/chromium_org/cc/debug/
debug_rect_history.cc 66 void DebugRectHistory::SavePaintRects(LayerImpl* layer) {
67 // We would like to visualize where any layer's paint rect (update rect) has
68 // changed, regardless of whether this layer is skipped for actual drawing or
72 if (!layer->update_rect().IsEmpty() && layer->DrawsContent()) {
73 float width_scale = layer->content_bounds().width() /
74 static_cast<float>(layer->bounds().width());
75 float height_scale = layer->content_bounds().height() /
76 static_cast<float>(layer->bounds().height());
78 gfx::ScaleRect(layer->update_rect(), width_scale, height_scale)
102 LayerImpl* layer = layer_list[layer_index]; local
    [all...]

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 91011>>