HomeSort by relevance Sort by last modified time
    Searched refs:layer (Results 76 - 100 of 269) sorted by null

1 2 34 5 6 7 8 91011

  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLViewInternal.h 67 - (void)attachRootLayer:(CALayer*)layer;
WebVideoFullscreenController.h 62 - (void)setupVideoOverlay:(QTMovieLayer*)layer;
  /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...]
Snapshot.h 28 #include "Layer.h"
46 Snapshot(): flags(0), previous(NULL), layer(NULL), fbo(0), invisible(false), empty(false) {
57 flags(0), previous(s), layer(NULL), fbo(s->fbo),
92 * a new layer.
96 * Indicates that this snapshot is a special type of layer
107 * an FBO layer.
213 Layer* layer; member in class:android::uirenderer::Snapshot
223 * inside it. This flag is set only when the layer clips drawing to its
229 * If set to true, the layer will not be composited. This is similar t
    [all...]
  /frameworks/base/media/libstagefright/
XINGSeeker.cpp 122 uint8_t id, layer, sr_index, mode; local
123 layer = (buffer[1] >> 1) & 3;
127 if (layer == 0) {
172 // Samples per Frame: 1. index = MPEG Version ID, 2. index = Layer
187 *duration = (int64_t)frame * samplesPerFrames[id&1][3-layer] * 1000000LL
  /frameworks/base/services/java/com/android/server/wm/
InputWindowHandle.java 81 // Window layer.
82 public int layer; field in class:InputWindowHandle
  /frameworks/base/services/surfaceflinger/
SurfaceTextureLayer.h 30 class Layer;
34 wp<Layer> mLayer;
38 SurfaceTextureLayer(GLuint tex, const sp<Layer>& layer);
SurfaceFlinger.h 39 #include "Layer.h"
49 class Layer;
68 size_t attachLayer(const sp<LayerBaseClient>& layer);
69 void detachLayer(const LayerBaseClient* layer);
198 status_t removeLayer(const sp<LayerBase>& layer);
199 status_t addLayer(const sp<LayerBase>& layer);
200 status_t invalidateLayerVisibility(const sp<LayerBase>& layer);
203 sp<Layer> getLayer(const sp<ISurface>& sur) const;
227 friend class Layer;
236 sp<Layer> createNormalSurface
    [all...]
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...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 48 // for hosting this GraphicsLayer in a native layer hierarchy
54 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
55 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
136 // with SkPicture, we always repaint the entire layer's content.
LayerAndroid.h 27 #include "Layer.h"
56 void serializeLayer(WebCore::LayerAndroid* layer, SkWStream* stream);
58 void cleanupImageRefs(WebCore::LayerAndroid* layer);
116 class TEST_EXPORT LayerAndroid : public Layer {
121 LayerAndroid(const LayerAndroid& layer);
130 // Returns a rect describing the bounds of the layer with the local
131 // transformation applied, expressed relative to the parent layer.
153 // draw layer and its children via Z, pre-order traversal
159 // prepare layer and its children via reverse-Z, post-order traversal
187 SkRect viewRect) { // view rect, can be smaller than the layer'
    [all...]
TreeManager.cpp 29 #include "Layer.h"
134 // a new layer tree has arrived, queue it if we're painting something already,
136 void TreeManager::updateWithTree(Layer* newTree, bool brandNew)
181 void TreeManager::updateScrollableLayerInTree(Layer* tree, int layerId, int x, int y)
183 LayerAndroid* layer; local
185 layer = static_cast<LayerAndroid*>(tree->getChild(0))->findById(layerId);
186 if (layer && layer->contentIsScrollable())
187 static_cast<ScrollableLayerAndroid*>(layer)->scrollTo(x, y);
304 Layer* layers = paintingTree->getChild(0)
    [all...]
android_graphics.cpp 43 void CursorRing::draw(SkCanvas* canvas, LayerAndroid* layer, IntRect* inval)
50 int layerId = m_node->isInLayer() ? m_frame->layer(m_node)->uniqueId() : -1;
51 if (layer->uniqueId() != layerId)
  /external/skia/src/utils/
SkLayer.cpp 152 const SkLayer* layer = this; local
153 while (layer->fParent != NULL) {
154 layer = layer->fParent;
157 layer->getLocalTransform(&tmp);
158 tmp.preConcat(layer->getChildrenMatrix());
  /frameworks/base/opengl/tests/hwc/
hwcRects.cpp 318 hwc_layer_t *layer = &list->hwLayers[0]; local
320 it != rectangle.end(); ++it, ++layer) {
321 layer->handle = it->texture->handle;
322 layer->blending = it->blend;
323 layer->transform = it->transform;
324 layer->sourceCrop = it->sourceCrop;
325 layer->displayFrame = it->displayFrame;
327 layer->visibleRegionScreen.numRects = 1;
328 layer->visibleRegionScreen.rects = &layer->displayFrame
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 54 * Note: OpenGLRenderer JNI layer is generated and compiled only on supported
651 jobject clazz, Layer* layer) {
652 if (layer) {
653 return new LayerRenderer(layer);
658 static Layer* android_view_GLES20Canvas_createTextureLayer(JNIEnv* env, jobject clazz,
660 Layer* layer = LayerRenderer::createTextureLayer(isOpaque); local
662 if (layer) {
664 storage[0] = layer->getTexture()
673 Layer* layer = LayerRenderer::createLayer(width, height, isOpaque); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/directfb/
SDL_DirectFB_video.c 2 SDL - Simple DirectMedia Layer
159 static DFBSurfacePixelFormat GetFormatForBpp (int bpp, IDirectFBDisplayLayer *layer)
164 layer->GetConfiguration (layer, &dlc);
382 IDirectFBDisplayLayer *layer = NULL; local
403 ret = dfb->GetDisplayLayer (dfb, DLID_PRIMARY, &layer);
417 layer->EnableCursor (layer, 1);
419 /* Query layer configuration to determine the current mode and pixelformat */
420 layer->GetConfiguration (layer, &dlc)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 219 TextureMapperNode* TextureMapperNode::toTextureMapperNode(GraphicsLayer* layer)
221 return layer ? static_cast<TextureMapperNode*>(layer->platformLayer()) : 0;
232 // any layer that doesn't conform to the other rules is a DefaultLayer.
236 // only one layer is the root layer.
242 // A layer with no contents is always a default layer.
246 // ClipLayer: creates a new framebuffer, the size of the layer, and then paints it to the enclosing BitmapTexture with the layer's transform/opacity
591 TextureMapperNode* layer = m_children[i]; local
716 TextureMapperNode* layer = m_children[i]; local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnJAJP.java 338 /** Target layer of the {@link ComposingText} */
1342 int layer = mTargetLayer; local
1575 int layer = mTargetLayer; local
1605 int layer = mTargetLayer; local
1665 int layer = mTargetLayer; local
2138 int layer; local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayer.cpp 287 // to our parent layer.
299 // Frequently our parent layer's renderer will be the same as our renderer's containing block. In that case,
372 // Clear the IsCompositingUpdateRoot flag once we've found the first compositing layer in this update.
603 // layer may be hidden but still have some visible content, check for this
636 // This propagates up through preserve-3d hierarchies to the enclosing flattening layer.
644 // Return true if this layer or any preserve-3d descendants have 3d.
666 // If we live in a 3d hierarchy, then the layer at the root of that hierarchy needs
696 // nearest enclosing object with a layer.
716 // For positioned layers, we subtract out the enclosing positioned layer's scroll offset.
744 // FIXME: We'd really like to just get rid of the concept of a layer rectangle and rely on the renderers
793 RenderLayer* layer = parent(); local
2007 const RenderLayer* layer = this; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 158 PlatformCALayer::PlatformCALayer(LayerType layerType, PlatformLayer* layer, PlatformCALayerClient* owner)
162 if (layer) {
164 m_layer = layer;
298 void PlatformCALayer::appendSublayer(PlatformCALayer* layer)
301 [m_layer.get() addSublayer:layer->m_layer.get()];
305 void PlatformCALayer::insertSublayer(PlatformCALayer* layer, size_t index)
308 [m_layer.get() insertSublayer:layer->m_layer.get() atIndex:index];
312 void PlatformCALayer::replaceSublayer(PlatformCALayer* reference, PlatformCALayer* layer)
315 [m_layer.get() replaceSublayer:reference->m_layer.get() with:layer->m_layer.get()];
381 void PlatformCALayer::setMask(PlatformCALayer* layer)
    [all...]
  /external/blktrace/
btrace.spec 27 performance or application problems relating to block layer io.
  /external/webkit/Source/WebCore/page/wince/
FrameWinCE.cpp 90 float docHeight = root->layer()->height();
91 float docWidth = root->layer()->width();
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 80 // smaller than the layer bounds (e.g. tiled layers)
89 // FIXME: ideally we'd avoid calling -setNeedsDisplay on a layer that is a plain color,
103 float borderWidth = CACFLayerGetBorderWidth(layer());
105 CGColorRef borderColor = CACFLayerGetBorderColor(layer());
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 71 static TypeVariable findFormalVar(GenericDeclaration layer, String name) {
72 TypeVariable[] formalVars = layer.getTypeParameters();

Completed in 712 milliseconds

1 2 34 5 6 7 8 91011