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

<<21222324252627282930>>

  /external/chromium_org/ash/wm/workspace/
phantom_window_controller.cc 14 #include "ui/compositor/layer.h"
63 widget->GetNativeWindow()->layer()->GetAnimator());
139 ui::Layer* widget_layer = phantom_widget->GetNativeWindow()->layer();
  /external/chromium_org/chrome/browser/ui/ash/launcher/
multi_profile_app_window_launcher_controller.cc 110 !app_window->GetNativeWindow()->layer()->GetTargetOpacity()) {
111 app_window->GetNativeWindow()->layer()->SetOpacity(1.0f);
  /external/chromium_org/content/browser/web_contents/aura/
window_slider_unittest.cc 122 ui::Layer* CreateLayerForTest() {
124 ui::Layer* layer = new ui::Layer(ui::LAYER_SOLID_COLOR); local
125 layer->SetColor(SK_ColorRED);
126 return layer;
130 virtual ui::Layer* CreateBackLayer() OVERRIDE {
137 virtual ui::Layer* CreateFrontLayer() OVERRIDE {
144 virtual void OnWindowSlideCompleted(scoped_ptr<ui::Layer> layer) OVERRIDE
    [all...]
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.h 28 class Layer;
72 const cc::Layer* GetRootLayer() const;
81 virtual void setRootLayer(const blink::WebLayer& layer);
112 virtual void registerForAnimations(blink::WebLayer* layer);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
LayerDetailsView.js 38 this.element.classList.add("layer-details-view");
39 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("Select a layer to see its details"));
78 "root": WebInspector.UIString("Root layer."),
79 "layerForClip": WebInspector.UIString("Layer for clip."),
80 "layerForScrollbar": WebInspector.UIString("Layer for scrollbar."),
81 "layerForScrollingContainer": WebInspector.UIString("Layer for scrolling container."),
82 "layerForForeground": WebInspector.UIString("Layer for foreground."),
83 "layerForBackground": WebInspector.UIString("Layer for background."),
84 "layerForMask": WebInspector.UIString("Layer for mask."),
85 "layerForVideoOverlay": WebInspector.UIString("Layer for video overlay."
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 182 Texture3DAttachment(Texture3D *texture, GLint level, GLint layer);
215 Texture2DArrayAttachment(Texture2DArray *texture, GLint level, GLint layer);
FramebufferAttachment.cpp 200 Texture3DAttachment::Texture3DAttachment(Texture3D *texture, GLint level, GLint layer)
201 : mLevel(level), mLayer(layer)
280 Texture2DArrayAttachment::Texture2DArrayAttachment(Texture2DArray *texture, GLint level, GLint layer)
281 : mLevel(level), mLayer(layer)
  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_state.h 366 unsigned first_layer:16; /**< first layer to use for array textures */
367 unsigned last_layer:16; /**< last layer to use for array textures */
431 unsigned layer_stride; /**< image/layer stride in bytes */
575 unsigned layer; member in struct:pipe_resolve_info::__anon17761
584 unsigned layer; member in struct:pipe_resolve_info::__anon17762
  /external/chromium_org/ui/wm/core/
window_util.cc 9 #include "ui/compositor/layer.h"
20 void CloneChildren(ui::Layer* to_clone, ui::Layer* parent) {
21 typedef std::vector<ui::Layer*> Layers;
26 ui::Layer* old_layer = owner ? owner->RecreateLayer().release() : NULL;
29 // RecreateLayer() moves the existing children to the new layer. Create a
31 CloneChildren(owner->layer(), old_layer);
88 CloneChildren(root->layer(), old_layer->root());
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 366 unsigned first_layer:16; /**< first layer to use for array textures */
367 unsigned last_layer:16; /**< last layer to use for array textures */
431 unsigned layer_stride; /**< image/layer stride in bytes */
575 unsigned layer; member in struct:pipe_resolve_info::__anon31320
584 unsigned layer; member in struct:pipe_resolve_info::__anon31321
  /frameworks/base/services/core/java/com/android/server/wm/
FocusedStackFrame.java 139 public void setLayer(int layer) {
140 mSurfaceControl.setLayer(layer);
  /external/aac/libFDK/include/
FDK_tools_rom.h 263 * \param layer the layer of the current element.
266 const element_list_t * getBitstreamElementList(AUDIO_OBJECT_TYPE aot, SCHAR epConfig, UCHAR nChannels, UCHAR layer);
  /external/chromium_org/athena/screen/
screen_accelerator_handler.cc 34 root_window->layer(),
  /external/chromium_org/cc/layers/
delegated_renderer_layer_impl.h 39 virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
44 // that will be sending quads to the layer. Registers the callback to
render_surface.h 21 class Layer;
27 explicit RenderSurface(Layer* owning_layer);
107 void AddContributingDelegatedRenderPassLayer(Layer* layer) {}
119 friend class LayerIterator<Layer>;
121 Layer* owning_layer_;
  /external/chromium_org/cc/resources/
tile_manager_perftest.cc 171 // Active layer must get updated first so pending layer can share from it.
233 // Pending layer counts as one layer.
237 // Create the rest of the layers as children of the root layer.
239 scoped_ptr<FakePictureLayerImpl> layer = local
242 layer->SetBounds(layer_bounds);
243 layers.push_back(layer.get());
244 pending_root_layer_->AddChild(layer.PassAs<LayerImpl>());
  /external/chromium_org/cc/trees/
layer_sorter.h 39 // Holds various useful properties derived from a layer's 3D outline.
57 LayerImpl* layer; member in struct:cc::GraphNode
occlusion_tracker.h 19 class Layer;
23 // front-to-back order. As each layer is visited, one of the methods in this
25 // occlusion in the content space of the current layer may be queried, via
26 // methods such as Occluded() and UnoccludedContentRect(). If the current layer
29 // once finished with the layer, occlusion behind the layer should be marked by
44 // Returns true if the given rect in content space for a layer is fully
45 // occluded in either screen space or the layer's target surface.
46 // |render_target| is the contributing layer's render target, and
53 // layer. Used when considering occlusion for a layer that paints/draw
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.h 76 blink::WebLayer* layer() const;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
TextureStorage9.h 39 virtual RenderTarget *getRenderTargetLayer(int mipLevel, int layer) { return NULL; }
  /external/chromium_org/ui/aura/bench/
bench_main.cc 31 #include "ui/compositor/layer.h"
46 using ui::Layer;
51 class ColoredLayer : public Layer, public LayerDelegate {
54 : Layer(ui::LAYER_TEXTURED),
148 // A benchmark that adds a texture layer that is updated every frame.
152 Layer* parent,
241 Layer* parent_;
242 Layer webgl_;
258 SoftwareScrollBench(ColoredLayer* layer,
262 layer_(layer),
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 52 void releaseScreen (CAEAGLLayer* layer);
  /frameworks/base/libs/hwui/renderthread/
CanvasContext.h 44 class Layer;
76 bool copyLayerInto(DeferredLayerUpdater* layer, SkBitmap* bitmap);
86 Layer* createTextureLayer();
98 // TODO: Replace with something better for layer & other GL object
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 53 jfieldID layer; member in struct:android::__anon38546
154 mInfo->layer = env->GetIntField(obj,
155 gInputWindowHandleClassInfo.layer);
296 GET_FIELD_ID(gInputWindowHandleClassInfo.layer, clazz,
297 "layer", "I");
  /frameworks/native/include/gui/
SurfaceControl.h 61 status_t setLayer(int32_t layer);

Completed in 595 milliseconds

<<21222324252627282930>>