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

  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.cpp 2 #include "Layer.h"
14 Layer::Layer() {
30 SkDebugf("Layer new: %d\n", gLayerAllocCount);
34 Layer::Layer(const Layer& src) : INHERITED() {
50 SkDebugf("Layer copy: %d\n", gLayerAllocCount);
54 Layer::~Layer() {
    [all...]
Layer.h 37 class TEST_EXPORT Layer : public SkRefCnt {
40 Layer();
41 Layer(const Layer&);
42 virtual ~Layer();
44 // Whether the layer should apply its tranform directly onto the root
45 // layer, rather than using the transforms of all ancestor layers. This is
71 // tell rendering assets to use this layer tree for drawing
75 virtual void setIsPainting(Layer* drawingTree) {}
77 // if a similar layer exists in the replacement tree, add invals to i
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Layer.java 19 public class Layer {
21 public Layer(int axis) {
  /frameworks/base/services/surfaceflinger/
Layer.h 47 class Layer : public LayerBaseClient
50 Layer(SurfaceFlinger* flinger, DisplayID display,
53 virtual ~Layer();
55 virtual const char* getTypeId() const { return "Layer"; }
57 // the this layer's size and format
75 virtual sp<Layer> getLayer() const { return const_cast<Layer*>(this); }
Layer.cpp 38 #include "Layer.h"
49 Layer::Layer(SurfaceFlinger* flinger,
68 void Layer::onFirstRef()
73 FrameQueuedListener(Layer* layer) : mLayer(layer) { }
75 wp<Layer> mLayer;
77 sp<Layer> that(mLayer.promote());
89 Layer::~Layer(
    [all...]
  /frameworks/base/libs/hwui/
Layer.h 41 * A layer has dimensions and is backed by an OpenGL texture or FBO.
43 struct Layer {
44 Layer(const uint32_t layerWidth, const uint32_t layerHeight) {
56 ~Layer() {
62 * Sets this layer's region to a rectangle. Computes the appropriate
72 const float height = layer.getHeight();
77 regionRect.translate(layer.left, layer.top);
211 * Bounds of the layer.
213 Rect layer; member in struct:android::uirenderer::Layer
    [all...]
  /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...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/
PsdFile.java 287 final List<Layer> mLayers = new ArrayList<Layer>();
290 mLayers.add(new Layer(name, image, offset, visible));
295 for (Layer layer : mLayers) {
296 length += layer.getLength();
303 for (Layer layer : mLayers) {
304 layer.write(out);
309 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...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 574 milliseconds