Searched refs:layer (Results 76 - 100 of 814) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.cpp68 InterpolationQuality ImageQualityController::chooseInterpolationQuality(GraphicsContext* context, RenderObject* object, Image* image, const void* layer, const LayoutSize& layoutSize) argument
79 if (shouldPaintAtLowQuality(context, object, image, layer, layoutSize))
102 void ImageQualityController::removeLayer(RenderObject* object, LayerSizeMap* innerMap, const void* layer) argument
105 innerMap->remove(layer);
111 void ImageQualityController::set(RenderObject* object, LayerSizeMap* innerMap, const void* layer, const LayoutSize& size) argument
114 innerMap->set(layer, size);
117 newInnerMap.set(layer, size);
156 bool ImageQualityController::shouldPaintAtLowQuality(GraphicsContext* context, RenderObject* object, Image* image, const void *layer, const LayoutSize& layoutSize) argument
172 LayerSizeMap::iterator j = innerMap->find(layer);
191 set(object, innerMap, layer, scaledLayoutSiz
[all...]
H A DImageQualityController.h56 InterpolationQuality chooseInterpolationQuality(GraphicsContext*, RenderObject*, Image*, const void* layer, const LayoutSize&);
61 void set(RenderObject*, LayerSizeMap* innerMap, const void* layer, const LayoutSize&);
66 bool shouldPaintAtLowQuality(GraphicsContext*, RenderObject*, Image*, const void* layer, const LayoutSize&);
67 void removeLayer(RenderObject*, LayerSizeMap* innerMap, const void* layer);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebContentLayer.h39 virtual WebLayer* layer() = 0;
41 // Set to true if the backside of this layer's contents should be visible when composited.
45 // Allow the compositor to determine the scale at which the layer should
46 // be rasterized based on the layer's hierarchy and transform. This defaults
50 // Set to draw a system-defined checkerboard if the compositor would otherwise draw a tile in this layer
51 // and the actual contents are unavailable. If false, the compositor will draw the layer's background color
H A DWebImageLayer.h39 virtual WebLayer* layer() = 0;
H A DWebScrollbarLayer.h39 virtual WebLayer* layer() = 0;
/external/chromium_org/ui/compositor/
H A Ddebug_utils.h18 // Log the layer hierarchy. Mark layers which contain |mouse_location| with '*'.
19 COMPOSITOR_EXPORT void PrintLayerHierarchy(const Layer* layer,
H A Ddip_util.cc8 #include "cc/layers/layer.h"
11 #include "ui/compositor/layer.h"
27 float GetDeviceScaleFactor(const Layer* layer) { argument
28 return layer->device_scale_factor();
31 gfx::Point ConvertPointToDIP(const Layer* layer, argument
34 gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
37 gfx::PointF ConvertPointToDIP(const Layer* layer, argument
39 return gfx::ScalePoint(point_in_pixel, 1.0f / GetDeviceScaleFactor(layer));
42 gfx::Size ConvertSizeToDIP(const Layer* layer, argument
45 gfx::ScaleSize(size_in_pixel, 1.0f / GetDeviceScaleFactor(layer)));
48 ConvertRectToDIP(const Layer* layer, const gfx::Rect& rect_in_pixel) argument
54 ConvertPointToPixel(const Layer* layer, const gfx::Point& point_in_dip) argument
60 ConvertSizeToPixel(const Layer* layer, const gfx::Size& size_in_dip) argument
66 ConvertRectToPixel(const Layer* layer, const gfx::Rect& rect_in_dip) argument
[all...]
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h10 __u8 layer:4; member in struct:tcf_em_nbyte
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_nbyte.h10 __u8 layer:4; member in struct:tcf_em_nbyte
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c42 IDirectFBDisplayLayer *layer; member in struct:private_yuvhwdata
78 IDirectFBDisplayLayer *layer; local
91 ret = dfb->GetDisplayLayer (dfb, hwdata->layer_id, &layer);
122 ret = layer->SetCooperativeLevel (layer, DLSCL_ADMINISTRATIVE);
126 layer->Release (layer);
130 ret = layer->SetConfiguration (layer, &conf);
134 layer
258 IDirectFBDisplayLayer *layer = overlay->hwdata->layer; local
[all...]
/external/chromium_org/ash/first_run/
H A Ddesktop_cleaner.cc38 ui::Layer* layer = container_->layer();
39 ui::ScopedLayerAnimationSettings animation_settings(layer->GetAnimator());
41 layer->SetOpacity(0.0);
53 ui::Layer* layer = container_->layer(); local
54 ui::ScopedLayerAnimationSettings animation_settings(layer->GetAnimator());
55 layer->SetOpacity(1.0);
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerHoister.cpp36 // Layer hoisting pre-renders the entire layer since it will be cached and potentially
38 // clip will not be limiting the size of the pre-rendered layer. kSaveLayerMaxSize
78 // Generate the layer and/or ensure it is locked
84 GrCachedLayer* layer = layerCache->findLayerOrCreate(pict->uniqueID(), local
98 bool needsRendering = layerCache->lock(layer, desc,
100 if (NULL == layer->texture()) {
107 if (layer->isAtlased()) {
113 info->fLayer = layer;
173 GrCachedLayer* layer = atlased[i].fLayer; local
180 SkRect bound = SkRect::MakeXYWH(SkIntToScalar(layer
214 GrCachedLayer* layer = nonAtlased[i].fLayer; local
252 unlock_layer_in_cache(GrLayerCache* layerCache, const SkPicture* picture, GrCachedLayer* layer) argument
[all...]
/external/chromium_org/cc/layers/
H A Ddelegated_frame_provider.h23 // Only one observing layer has ownership of the DelegatedFrameProvider. Only
35 void AddObserver(DelegatedRendererLayer* layer);
36 void RemoveObserver(DelegatedRendererLayer* layer);
60 DelegatedRendererLayer* layer; member in struct:cc::DelegatedFrameProvider::Observer
63 Observer(DelegatedRendererLayer* layer, const gfx::RectF& damage) argument
64 : layer(layer), damage(damage) {}
H A Dlayer.cc5 #include "cc/layers/layer.h"
87 // Similarly we shouldn't have a layer tree host since it also keeps a
115 // When changing hosts, the layer needs to commit its properties to the impl
218 void Layer::SetParent(Layer* layer) { argument
219 DCHECK(!layer || !layer->HasAncestor(this));
224 if (layer)
225 layer->AddDependentNeedsPushProperties();
228 parent_ = layer;
336 Layer* layer local
345 Layer* layer = children_[0].get(); local
442 SetReplicaLayer(Layer* layer) argument
853 PushPropertiesTo(LayerImpl* layer) argument
[all...]
/external/chromium_org/cc/trees/
H A Ddamage_tracker.cc73 // for each layer in the layer_list:
74 // if the layer is actually a render_surface:
77 // add the layer's damage to the target surface.
82 // for each leftover layer:
83 // add the old layer/surface bounds to the target surface damage.
93 // layer is not changed, it does NOT mean that the layer can skip drawing.
95 // example, if a layer changed its opacity, then layers underneath must be
98 // - If a layer/surface property changed, the old bounds and new bounds may
101 // layer change
183 LayerImpl* layer = layer_list[layer_index]; local
262 ExtendDamageForLayer(LayerImpl* layer, gfx::Rect* target_damage_rect) argument
311 ExtendDamageForRenderSurface( LayerImpl* layer, gfx::Rect* target_damage_rect) argument
[all...]
H A Dlayer_tree_impl.cc22 #include "cc/layers/layer.h"
41 LayerScrollOffsetDelegateProxy(LayerImpl* layer, argument
44 : layer_(layer), delegate_(delegate), layer_tree_impl_(layer_tree) {}
119 void LayerTreeImpl::SetRootLayer(scoped_ptr<LayerImpl> layer) { argument
127 root_layer_ = layer.Pass();
178 // Clear all data structures that have direct references to the layer tree.
271 void LayerTreeImpl::SetCurrentlyScrollingLayer(LayerImpl* layer) { argument
272 if (currently_scrolling_layer_ == layer)
279 currently_scrolling_layer_ = layer;
280 if (layer
382 ApplySentScrollDeltasFromAbortedCommitTo(LayerImpl* layer) argument
404 ApplyScrollDeltasSinceBeginMainFrameTo(LayerImpl* layer) argument
528 LayerImpl* layer = *it; local
584 RegisterLayer(LayerImpl* layer) argument
589 UnregisterLayer(LayerImpl* layer) argument
604 DidBecomeActiveRecursive(LayerImpl* layer) argument
949 GetDelegatedScrollOffset(LayerImpl* layer) argument
1055 AddLayerWithCopyOutputRequest(LayerImpl* layer) argument
1071 RemoveLayerWithCopyOutputRequest(LayerImpl* layer) argument
1111 LayerClipsSubtree(LayerType* layer) argument
1188 GetNextClippingLayer(const LayerImpl* layer) argument
1196 PointIsClippedBySurfaceOrClipRect( const gfx::PointF& screen_space_point, const LayerImpl* layer) argument
1222 PointHitsLayer(const LayerImpl* layer, const gfx::PointF& screen_space_point, float* distance_to_intersection) argument
1256 FindClosestMatchingLayer( const gfx::PointF& screen_space_point, LayerImpl* layer, const Functor& func, FindClosestMatchingLayerDataForRecursion* data_for_recursion) argument
1276 ScrollsAnyDrawnRenderSurfaceLayerListMember(LayerImpl* layer) argument
1380 ComputeViewportSelection( const LayerSelectionBound& layer_bound, LayerImpl* layer, float device_scale_factor) argument
1447 RegisterPictureLayerImpl(PictureLayerImpl* layer) argument
1451 UnregisterPictureLayerImpl(PictureLayerImpl* layer) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dmask.h37 void mask_layer_destroy(struct vg_mask_layer *layer);
38 void mask_layer_fill(struct vg_mask_layer *layer,
42 VGint mask_layer_width(struct vg_mask_layer *layer);
43 VGint mask_layer_height(struct vg_mask_layer *layer);
44 void mask_copy(struct vg_mask_layer *layer,
53 void mask_using_layer(struct vg_mask_layer *layer,
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dmask.h37 void mask_layer_destroy(struct vg_mask_layer *layer);
38 void mask_layer_fill(struct vg_mask_layer *layer,
42 VGint mask_layer_width(struct vg_mask_layer *layer);
43 VGint mask_layer_height(struct vg_mask_layer *layer);
44 void mask_copy(struct vg_mask_layer *layer,
53 void mask_using_layer(struct vg_mask_layer *layer,
/external/chromium_org/cc/test/
H A Dlayer_test_common.h56 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2); local
57 T* ptr = layer.get();
58 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
64 scoped_ptr<T> layer = T::Create(host_->host_impl()->active_tree(), 2, a); local
65 T* ptr = layer.get();
66 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
72 scoped_ptr<T> layer = local
74 T* ptr = layer.get();
75 root_layer_impl_->AddChild(layer.template PassAs<LayerImpl>());
81 scoped_ptr<T> layer local
99 scoped_ptr<T> layer = local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.cpp55 void CSSToStyleMap::mapFillAttachment(FillLayer* layer, CSSValue* value) const argument
58 layer->setAttachment(FillLayer::initialFillAttachment(layer->type()));
68 layer->setAttachment(FixedBackgroundAttachment);
71 layer->setAttachment(ScrollBackgroundAttachment);
74 layer->setAttachment(LocalBackgroundAttachment);
81 void CSSToStyleMap::mapFillClip(FillLayer* layer, CSSValue* value) const argument
84 layer->setClip(FillLayer::initialFillClip(layer->type()));
92 layer
95 mapFillComposite(FillLayer* layer, CSSValue* value) const argument
109 mapFillBlendMode(FillLayer* layer, CSSValue* value) const argument
123 mapFillOrigin(FillLayer* layer, CSSValue* value) const argument
138 mapFillImage(FillLayer* layer, CSSValue* value) argument
149 mapFillRepeatX(FillLayer* layer, CSSValue* value) const argument
163 mapFillRepeatY(FillLayer* layer, CSSValue* value) const argument
177 mapFillSize(FillLayer* layer, CSSValue* value) const argument
219 mapFillXPosition(FillLayer* layer, CSSValue* value) const argument
241 mapFillYPosition(FillLayer* layer, CSSValue* value) const argument
263 mapFillMaskSourceType(FillLayer* layer, CSSValue* value) const argument
[all...]
/external/chromium_org/ash/wm/
H A Dworkspace_controller.cc20 #include "ui/compositor/layer.h"
85 ui::Layer* layer = (*i)->layer(); local
86 if (!layer->GetTargetVisibility())
110 viewport_->layer()->SetOpacity(0.0f);
112 viewport_->layer(), LAYER_SCALE_ANIMATION_ABOVE);
115 viewport_->layer()->GetAnimator()->StopAnimating();
119 viewport_->layer()->GetAnimator());
122 viewport_->layer()->GetAnimator()->SchedulePauseForProperties(
131 viewport_->layer()
[all...]
/external/chromium_org/cc/debug/
H A Dinvalidation_benchmark.cc13 #include "cc/layers/layer.h"
49 } else if (mode_string == "layer") {
57 << ". One of {fixed_size, layer, viewport, random} expected.";
70 void InvalidationBenchmark::Run(Layer* layer) { argument
71 layer->RunMicroBenchmark(this);
74 void InvalidationBenchmark::RunOnLayer(PictureLayer* layer) { argument
78 gfx::Rect visible_content_rect = layer->visible_content_rect();
82 layer->SetNeedsDisplayRect(invalidation_rect);
86 // Invalidate entire layer.
87 layer
[all...]
/external/chromium_org/media/formats/mpeg/
H A Dmpeg1_audio_stream_parser.cc33 // Maps version and layer information in the frame header
96 int layer; local
107 !reader.ReadBits(2, &layer) ||
121 << " layer 0x" << layer
128 layer == kLayerReserved ||
134 << " layer 0x" << layer
141 if (layer == kLayer2 && kIsAllowed[bitrate_index][channel_mode]) {
149 int bitrate = kBitrateMap[bitrate_index][kVersionLayerMap[version][layer]];
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollingCoordinatorChromiumTest.cpp152 RenderLayer* layer = toRenderBoxModelObject(renderer)->layer();
153 if (!layer)
155 if (!layer->hasCompositedLayerMapping())
157 CompositedLayerMapping* compositedLayerMapping = layer->compositedLayerMapping();
178 WebLayer* layer = webLayerFromElement(element); local
179 ASSERT_TRUE(layer);
180 WebLayerPositionConstraint constraint = layer->positionConstraint();
187 WebLayer* layer = webLayerFromElement(element); local
188 ASSERT_TRUE(layer);
196 WebLayer* layer = webLayerFromElement(element); local
205 WebLayer* layer = webLayerFromElement(element); local
214 WebLayer* layer = webLayerFromElement(element); local
223 WebLayer* layer = webLayerFromElement(element); local
232 WebLayer* layer = webLayerFromElement(element); local
241 WebLayer* layer = webLayerFromElement(element); local
[all...]
/external/chromium_org/ui/views/widget/
H A Dwindow_reorderer_unittest.cc9 #include "ui/compositor/layer.h"
30 // Sets the name of |window| and |window|'s layer to |name|.
33 window->layer()->set_name(name);
68 v->layer()->set_name("v");
82 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
89 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
96 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
103 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
108 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
115 ui::test::ChildLayerNamesAsString(*parent_window->layer()));
[all...]

Completed in 1685 milliseconds

1234567891011>>