HomeSort by relevance Sort by last modified time
    Searched defs:Layer (Results 1 - 19 of 19) sorted by null

  /frameworks/base/libs/hwui/
Layer.cpp 23 #include "Layer.h"
31 Layer::Layer(const uint32_t layerWidth, const uint32_t layerHeight):
53 Layer::~Layer() {
62 uint32_t Layer::computeIdealWidth(uint32_t layerWidth) {
66 uint32_t Layer::computeIdealHeight(uint32_t layerHeight) {
70 bool Layer::resize(const uint32_t width, const uint32_t height) {
80 ALOGW("Layer exceeds max. dimensions supported by the GPU (%dx%d, max=%dx%d)",
114 void Layer::removeFbo(bool flush)
    [all...]
Layer.h 50 * A layer has dimensions and is backed by an OpenGL texture or FBO.
52 struct Layer {
53 Layer(const uint32_t layerWidth, const uint32_t layerHeight);
54 ~Layer();
67 * Sets this layer's region to a rectangle. Computes the appropriate
77 const float height = layer.getHeight();
82 regionRect.translate(layer.left, layer.top);
103 * Resize the layer and its texture if needed.
105 * @param width The new width of the layer
255 Rect layer; member in struct:android::uirenderer::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/cc/layers/
layer.cc 5 #include "cc/layers/layer.h"
27 scoped_refptr<Layer> Layer::Create() {
28 return make_scoped_refptr(new Layer());
31 Layer::Layer()
68 Layer::~Layer() {
72 // Similarly we shouldn't have a layer tree host since it also keeps a
90 void Layer::SetLayerTreeHost(LayerTreeHost* host)
327 Layer* layer = this; local
336 Layer* layer = children_[0].get(); local
    [all...]
layer.h 50 // Base class for composited layers. Special layer types are derived from
52 class CC_EXPORT Layer : public base::RefCounted<Layer>,
59 static scoped_refptr<Layer> Create();
63 Layer* RootLayer();
64 Layer* parent() { return parent_; }
65 const Layer* parent() const { return parent_; }
66 void AddChild(scoped_refptr<Layer> child);
67 void InsertChild(scoped_refptr<Layer> child, size_t index);
68 void ReplaceChild(Layer* reference, scoped_refptr<Layer> new_layer)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.cpp 235 const char Layer[] = "Layer";
  /external/chromium_org/ui/compositor/
layer.cc 5 #include "ui/compositor/layer.h"
36 const ui::Layer* GetRoot(const ui::Layer* layer) {
37 while (layer->parent())
38 layer = layer->parent();
39 return layer;
46 Layer::Layer()
369 const Layer* layer = this; local
    [all...]
layer.h 37 class Layer;
51 // Layer manages a texture, transform and a set of child Layers. Any View that
52 // has enabled layers ends up creating a Layer to manage the texture.
53 // A Layer can also be created without a texture, in which case it renders
58 // NOTE: unlike Views, each Layer does *not* own its children views. If you
59 // delete a Layer and it has children, the parent of each child layer is set to
61 class COMPOSITOR_EXPORT Layer
67 Layer();
68 explicit Layer(LayerType type)
    [all...]
  /frameworks/native/services/surfaceflinger/
Layer.cpp 41 #include "Layer.h"
55 int32_t Layer::sSequence = 1;
57 Layer::Layer(SurfaceFlinger* flinger, const sp<Client>& client,
115 void Layer::onFirstRef() {
134 Layer::~Layer() {
147 void Layer::onLayerDisplayed(const sp<const DisplayDevice>& hw,
148 HWComposer::HWCLayerInterface* layer) {
149 if (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...]
  /frameworks/native/cmds/flatland/
Main.cpp 283 class Layer {
287 Layer() :
414 // Scale the layer to match the current screen size.
421 // Set up the layer.
583 Layer mLayers[MAX_NUM_LAYERS];
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 245 final List<Layer> mLayers = new ArrayList<Layer>();
248 mLayers.add(new Layer(name, image, offset, visible));
253 for (Layer layer : mLayers) {
254 length += layer.getLength();
261 for (Layer layer : mLayers) {
262 layer.write(out);
267 for (Layer layer : mLayers)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 55 * a list of Graphics2D for each layers. The class actually maintains a list of {@link Layer}
56 * for each layer. Doing a save() will duplicate this list so that each graphics2D object
57 * ({@link Layer#getGraphics()}) is configured only for the new snapshot.
65 private final ArrayList<Layer> mLayers = new ArrayList<Layer>();
72 // local layer data
73 /** a local layer created with {@link Canvas#saveLayer(RectF, Paint, int)}.
74 * If this is null, this does not mean there's no layer, just that the snapshot is not the
75 * one that created the layer.
78 private final Layer mLocalLayer
330 Layer layer = mLayers.get(i); local
591 Layer layer = mLayers.get(i); local
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
hierarchyviewer2lib.jar 
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1151 milliseconds