HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 651 - 675 of 1091) sorted by null

<<21222324252627282930>>

  /external/chromium_org/cc/layers/
layer_position_constraint_unittest.cc 20 void SetLayerPropertiesForTesting(LayerImpl* layer,
26 layer->SetTransform(transform);
27 layer->SetTransformOrigin(transform_origin);
28 layer->SetPosition(position);
29 layer->SetBounds(bounds);
30 layer->SetShouldFlattenTransform(flatten_transform);
31 layer->SetContentBounds(bounds);
155 // container is the direct parent of the fixed-position layer.
192 // Top-left fixed-position layer should not be affected by container size.
198 // Case 4: Bottom-right fixed-position layer
    [all...]
delegated_renderer_layer_impl.cc 40 // The root RenderPass for the layer is merged with its target
65 void DelegatedRendererLayerImpl::PushPropertiesTo(LayerImpl* layer) {
66 LayerImpl::PushPropertiesTo(layer);
69 static_cast<DelegatedRendererLayerImpl*>(layer);
71 // If we have a new child_id to give to the active layer, it should
147 // will be in layer space. The damage may exceed the visible portion of
148 // the frame, so intersect the damage to the layer's bounds.
277 // for a layer in this compositor, not the delegating renderer. Then we want
layer.h 67 // Base class for composited layers. Special layer types are derived from
69 class CC_EXPORT Layer : public base::RefCounted<Layer>,
81 static scoped_refptr<Layer> Create();
85 Layer* RootLayer();
86 Layer* parent() { return parent_; }
87 const Layer* parent() const { return parent_; }
88 void AddChild(scoped_refptr<Layer> child);
89 void InsertChild(scoped_refptr<Layer> child, size_t index);
90 void ReplaceChild(Layer* reference, scoped_refptr<Layer> new_layer)
    [all...]
nine_patch_layer_impl.cc 28 void NinePatchLayerImpl::PushPropertiesTo(LayerImpl* layer) {
29 UIResourceLayerImpl::PushPropertiesTo(layer);
30 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer);
66 // |border| is in layer space. It cannot exceed the bounds of the layer.
106 // NinePatch border widths in layer space.
115 // Patch positions in layer space
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_copyrequest.cc 184 // Destroy the main thread layer right away.
191 // Prevent drawing so we can't make a copy of the impl_destroyed layer.
202 // Destroy the impl thread layer.
263 void AddCopyRequest(Layer* layer) {
264 layer->RequestCopyOfOutput(
284 // Hide the copy request layer.
291 // Hide the copy request layer's parent only.
298 // Hide the copy request layer's grand parent only.
305 // Hide the copy request layer's parent and grandparent
    [all...]
layer_tree_host_impl.h 471 void RegisterPictureLayerImpl(PictureLayerImpl* layer);
472 void UnregisterPictureLayerImpl(PictureLayerImpl* layer);
539 void AnimateScrollbarsRecursive(LayerImpl* layer,
550 void StartScrollbarFadeRecursive(LayerImpl* layer);
609 // The optional delegate for the root layer scroll offset.
663 // - external_transform_ applies a transform above the root layer
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 287 void WebPluginContainerImpl::setWebLayer(WebLayer* layer)
289 if (m_webLayer == layer)
294 if (layer)
295 GraphicsLayer::registerContentsLayer(layer);
299 bool needsCompositingUpdate = !m_webLayer || !layer;
301 m_webLayer = layer;
307 // Being composited or not affects the self painting layer bit
311 renderer->layer()->updateSelfPaintingLayer();
906 // Take our element and get the clip rect from the enclosing layer and
  /external/chromium_org/ash/magnifier/
magnification_controller.cc 23 #include "ui/compositor/layer.h"
218 ui::ConvertPointToDIP(root_window_->layer(), position);
265 root_window_->layer()->GetAnimator());
291 root_window_->layer()->GetAnimator()->StopAnimating();
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
TextureStorage11.cpp     [all...]
renderer11_utils.h 60 unsigned int layer, float u, float v, float s);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/trace/
tr_screen.c 212 unsigned level, unsigned layer,
225 trace_dump_arg(uint, layer);
230 screen->flush_frontbuffer(screen, resource, level, layer, context_private);
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.c 212 unsigned level, unsigned layer,
225 trace_dump_arg(uint, layer);
230 screen->flush_frontbuffer(screen, resource, level, layer, context_private);
  /external/chromium_org/third_party/skia/src/core/
SkCanvas.cpp 38 static void inc_layer() { ++gLayerCounter; printf("----- inc layer %d\n", gLayerCounter); }
39 static void dec_layer() { --gLayerCounter; printf("----- dec layer %d\n", gLayerCounter); }
111 these are used (assuming we're not on a layer) we rebuild these cache
770 DeviceCM* layer = fMCRec->fTopLayer; local
772 if (NULL == layer->fNext) { // only one layer
773 layer->updateMC(totalMatrix, totalClip, fClipStack, NULL);
777 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
778 } while ((layer = layer->fNext) != NULL)
934 DeviceCM* layer = SkNEW_ARGS(DeviceCM, (device, ir.fLeft, ir.fTop, paint, this)); local
979 DeviceCM* layer = fMCRec->fLayer; \/\/ may be null local
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 38 static void inc_layer() { ++gLayerCounter; printf("----- inc layer %d\n", gLayerCounter); }
39 static void dec_layer() { --gLayerCounter; printf("----- dec layer %d\n", gLayerCounter); }
111 these are used (assuming we're not on a layer) we rebuild these cache
770 DeviceCM* layer = fMCRec->fTopLayer; local
772 if (NULL == layer->fNext) { // only one layer
773 layer->updateMC(totalMatrix, totalClip, fClipStack, NULL);
777 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
778 } while ((layer = layer->fNext) != NULL)
934 DeviceCM* layer = SkNEW_ARGS(DeviceCM, (device, ir.fLeft, ir.fTop, paint, this)); local
979 DeviceCM* layer = fMCRec->fLayer; \/\/ may be null local
    [all...]
  /external/chromium_org/ash/display/
mirror_window_controller.cc 115 mirror_window->layer());
  /external/chromium_org/ash/wm/
lock_window_state.cc 149 !window_state->window()->layer()->visible()) {
150 // The layer may be hidden if the window was previously minimized. Make
mru_window_tracker.cc 179 // should verify that all tracked windows start with a layer, see
181 CHECK(active_window->layer());
  /external/chromium_org/chrome/browser/chromeos/display/
overscan_calibrator.cc 14 #include "ui/compositor/layer.h"
79 ui::Layer* parent_layer =
81 ->layer();
83 calibration_layer_.reset(new ui::Layer());
  /external/chromium_org/chrome/browser/chromeos/ui/
focus_ring_layer.cc 12 #include "ui/compositor/layer.h"
42 ui::Layer* root_layer = root_window->layer();
43 layer_.reset(new ui::Layer(ui::LAYER_TEXTURED));
51 // since we created this layer.
105 // layer-relative coordinates.
  /external/chromium_org/content/renderer/compositor_bindings/
web_layer_impl.h 27 class Layer;
50 scoped_refptr<cc::Layer>);
57 CONTENT_EXPORT cc::Layer* layer() const;
149 scoped_refptr<cc::Layer> layer_;
  /external/chromium_org/third_party/angle/src/libGLESv2/
validationES3.cpp 454 GLenum textarget, GLuint texture, GLint level, GLint layer,
497 if (layer < 0)
562 if (layer >= context->getMaximum2DArrayTextureLayers())
583 if (layer >= context->getMaximum3DTextureDimension())
  /external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
st_api.h 207 unsigned layer; member in struct:st_egl_image
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
dri2.c 492 img->layer = 0;
575 img->layer = 0;
638 img->layer = image->layer;
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.hpp 91 void setLayer (int layer);
  /external/mesa3d/src/gallium/include/state_tracker/
st_api.h 207 unsigned layer; member in struct:st_egl_image

Completed in 1738 milliseconds

<<21222324252627282930>>