HomeSort by relevance Sort by last modified time
    Searched refs:Layer (Results 101 - 125 of 288) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/cc/layers/
ui_resource_layer.cc 59 : Layer(),
107 Layer::SetLayerTreeHost(host);
144 Layer::DrawsContent();
147 void UIResourceLayer::PushPropertiesTo(LayerImpl* layer) {
148 Layer::PushPropertiesTo(layer);
149 UIResourceLayerImpl* layer_impl = static_cast<UIResourceLayerImpl*>(layer);
ui_resource_layer.h 10 #include "cc/layers/layer.h"
19 class CC_EXPORT UIResourceLayer : public Layer {
25 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
37 // Sets an opacity value per vertex. It will be multiplied by the layer
scrollbar_layer_unittest.cc 41 scoped_refptr<Layer> layer_tree_root = Layer::Create();
42 scoped_refptr<Layer> child1 = Layer::Create();
43 scoped_refptr<Layer> child2;
123 scoped_refptr<Layer> layer_tree_root = Layer::Create();
124 scoped_refptr<Layer> content_layer = Layer::Create();
125 scoped_refptr<Layer> scrollbar_layer
    [all...]
contents_scaling_layer_unittest.cc 50 scoped_refptr<Layer> root = Layer::Create();
layer_perftest.cc 5 #include "cc/layers/layer.h"
61 scoped_refptr<Layer> test_layer = Layer::Create();
  /external/chromium_org/cc/test/
occlusion_tracker_test_common.h 44 typedef TestOcclusionTrackerBase<Layer, RenderSurface> TestOcclusionTracker;
layer_tree_json_parser_unittest.cc 7 #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()))
    [all...]
  /external/chromium_org/ui/compositor/test/
default_context_factory.h 30 Layer* layer) OVERRIDE;
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.h 27 namespace cc { class Layer; }
52 scoped_refptr<cc::Layer>);
55 WEBKIT_COMPOSITOR_BINDINGS_EXPORT cc::Layer* layer() const;
145 scoped_refptr<cc::Layer> layer_;
web_layer_impl_fixed_bounds.h 23 scoped_refptr<cc::Layer>);
  /frameworks/native/services/surfaceflinger/
DisplayDevice.h 43 class Layer;
50 // region in layer-stack space
105 void setVisibleLayersSortedByZ(const Vector< sp<Layer> >& layers);
106 const Vector< sp<Layer> >& getVisibleLayersSortedByZ() const;
192 Vector< sp<Layer> > mVisibleLayersSortedByZ;
194 // Whether we have a visible secure layer on this display
209 // user-provided visible area of the layer stack
SurfaceFlinger.h 66 class Layer;
130 const Vector< sp<Layer> >& getLayerSortedByZForHwcDisplay(int id);
139 friend class Layer;
153 class LayerVector : public SortedVector< sp<Layer> > {
266 * Layer management
275 sp<Layer>* outLayer);
279 sp<IGraphicBufferProducer>* outGbp, sp<Layer>* outLayer);
286 // this layer meaning it is entirely safe to destroy all
287 // resources associated to this layer.
288 status_t onLayerDestroyed(const wp<Layer>& layer)
    [all...]
Layer.h 64 * Layer is first referenced.
69 class Layer : public SurfaceFlingerConsumer::FrameAvailableListener {
116 Layer(SurfaceFlinger* flinger, const sp<Client>& client,
119 virtual ~Layer();
121 // the this layer's size and format
148 virtual const char* getTypeId() const { return "Layer"; }
162 * isProtected - true if the layer may contain protected content in the
168 * isVisible - true if this layer is visible, false otherwise
187 HWComposer::HWCLayerInterface& layer);
189 HWComposer::HWCLayerInterface& layer);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Layer.java 19 public class Layer {
21 public Layer(int axis) {
  /external/chromium_org/ash/first_run/
desktop_cleaner.cc 39 ui::Layer* layer = container_->layer();
40 ui::ScopedLayerAnimationSettings animation_settings(layer->GetAnimator());
42 layer->SetOpacity(0.0);
54 ui::Layer* layer = container_->layer(); local
55 ui::ScopedLayerAnimationSettings animation_settings(layer->GetAnimator());
56 layer->SetOpacity(1.0)
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_video.cc 26 scoped_refptr<Layer> root = Layer::Create();
64 // Second frame the video layer is damaged.
layer_tree_host.cc 28 #include "cc/layers/layer.h"
175 // The layer tree must be destroyed before the layer tree host. We've
186 static void LayerTreeHostOnOutputSurfaceCreatedCallback(Layer* layer) {
187 layer->OnOutputSurfaceCreated();
273 // code that is logically a main thread operation, e.g. deletion of a Layer,
359 : Layer::INVALID_ID);
507 std::stack<Layer*> layer_stack;
510 Layer* current_layer = layer_stack.top()
1059 Layer* layer = local
    [all...]
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_unittest_scroll.cc 9 #include "cc/layers/layer.h"
42 Layer* root = layer_tree_host()->root_layer();
107 Layer* root = layer_tree_host()->root_layer();
186 scoped_refptr<Layer> root_scroll_layer = Layer::Create();
199 Layer* root_scroll_layer = layer_tree_host()->root_layer()->children()[0];
404 scoped_refptr<Layer> root_layer = Layer::Create();
425 // Scrolls on the child layer will happen at 5, 5. If they are treated
427 // be considered at 2.5, 2.5 in logical pixels, and will miss this layer
    [all...]
  /external/chromium_org/ash/system/tray/
system_tray_bubble.cc 15 #include "ui/compositor/layer.h"
58 SetPaintToLayer(view->layer() != NULL);
59 if (view->layer())
60 SetFillsBoundsOpaquely(view->layer()->fills_bounds_opaquely());
107 // Implicit animation observer that deletes itself and the layer at the end of
111 explicit AnimationObserverDeleteLayer(ui::Layer* layer)
112 : layer_(layer) {
123 scoped_ptr<ui::Layer> layer_;
157 scoped_ptr<ui::Layer> scoped_layer
163 ui::Layer* layer = scoped_layer.get(); local
    [all...]
  /external/chromium_org/ui/aura/bench/
bench_main.cc 29 #include "ui/compositor/layer.h"
45 using ui::Layer;
51 class ColoredLayer : public Layer, public LayerDelegate {
54 : Layer(ui::LAYER_TEXTURED),
174 // A benchmark that adds a texture layer that is updated every frame.
177 WebGLBench(Layer* parent, Compositor* compositor, int max_frames)
243 Layer* parent_;
244 Layer webgl_;
261 SoftwareScrollBench(ColoredLayer* layer,
265 layer_(layer),
    [all...]
  /external/chromium_org/content/browser/web_contents/aura/
window_slider.cc 22 void DeleteLayerAndShadow(ui::Layer* layer,
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());
123 ui::Layer* translate_layer = NULL;
141 translate_layer = owner_->layer();
189 ui::Layer* layer = slider_.release(); local
    [all...]
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 36 LayerRenderer::LayerRenderer(Layer* layer): mLayer(layer) {
48 LAYER_RENDERER_LOGD("Rendering into layer, fbo = %d", mLayer->getFbo());
52 const float width = mLayer->layer.getWidth();
53 const float height = mLayer->layer.getHeight();
89 LAYER_RENDERER_LOGD("Finished rendering into layer, fbo = %d", mLayer->getFbo());
104 // Layer support
164 const float height = mLayer->layer.getHeight();
187 Layer* LayerRenderer::createLayer(uint32_t width, uint32_t height, bool isOpaque)
198 Layer* layer = caches.layerCache.get(width, height); local
276 Layer* layer = new Layer(0, 0); local
    [all...]
OpenGLRenderer.h 215 ANDROID_API void pushLayerUpdate(Layer* layer);
216 ANDROID_API void cancelLayerUpdate(Layer* layer);
285 virtual status_t drawLayer(Layer* layer, float x, float y);
334 // If this value is set to < 1.0, it overrides alpha set on layer (see drawBitmap, drawLayer)
463 * Call this method after updating a layer during a drawing pass.
470 * appropriate layer(s).
476 * attaches it to the specified layer
    [all...]
  /external/chromium_org/content/browser/android/
overscroll_glow.cc 49 scoped_refptr<cc::Layer> CreateImageLayer(const SkBitmap& bitmap) {
50 scoped_refptr<cc::ImageLayer> layer = cc::ImageLayer::Create(); local
51 layer->SetBitmap(bitmap);
52 return layer;
109 bool OverscrollGlow::OnOverscrolled(cc::Layer* overscrolling_layer,
210 void OverscrollGlow::UpdateLayerAttachment(cc::Layer* parent) {
242 root_layer_ = cc::Layer::Create();
244 scoped_refptr<cc::Layer> edge_layer = CreateImageLayer(edge);
245 scoped_refptr<cc::Layer> glow_layer = CreateImageLayer(glow);

Completed in 407 milliseconds

1 2 3 45 6 7 8 91011>>