/external/mesa3d/src/gallium/drivers/r600/ |
r600_blit.c | 138 unsigned layer, level, sample, checked_last_layer, max_layer, max_sample; local 181 for (layer = first_layer; layer <= checked_last_layer; layer++) { 192 surf_tmpl.u.tex.first_layer = layer; 193 surf_tmpl.u.tex.last_layer = layer; 200 surf_tmpl.u.tex.first_layer = layer; 201 surf_tmpl.u.tex.last_layer = layer; 261 unsigned layer, level, checked_last_layer, max_layer; local 277 for (layer = first_layer; layer <= checked_last_layer; layer++) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorLayerTreeAgent.cpp | 75 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId) 77 RefPtr<TypeBuilder::LayerTree::Layer> layerObject = TypeBuilder::LayerTree::Layer::create() 111 void gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers) 146 // We do not re-enable layer agent automatically after navigation. This is because 182 PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > InspectorLayerTreeAgent::buildLayerTree() 188 RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> > layers = TypeBuilder::Array<TypeBuilder::LayerTree::Layer>::create(); 235 if (GraphicsLayer* layer = findLayerById(root->replicaLayer(), layerId)) 236 return layer; 326 GraphicsLayer* layer = layerById(errorString, layerId); local [all...] |
/frameworks/native/opengl/tests/hwc/ |
hwcRects.cpp | 317 hwc_layer_1_t *layer = &list->hwLayers[0]; local 319 it != rectangle.end(); ++it, ++layer) { 320 layer->handle = it->texture->handle; 321 layer->blending = it->blend; 322 layer->transform = it->transform; 323 layer->sourceCrop = it->sourceCrop; 324 layer->displayFrame = it->displayFrame; 326 layer->visibleRegionScreen.numRects = 1; 327 layer->visibleRegionScreen.rects = &layer->displayFrame [all...] |
/external/chromium_org/ash/wm/panels/ |
panel_layout_manager.cc | 246 GetNativeWindow()->layer()->SetOpacity(0); 369 child->layer()->SetOpacity(0); 551 ui::Layer* layer = panel->layer(); local 552 ui::ScopedLayerAnimationSettings panel_slide_settings(layer->GetAnimator()); 565 layer->SetOpacity(0); 705 ui::Layer* layer = visible_panels[i].window->layer(); local 853 ui::Layer* layer = callout_widget->GetNativeWindow()->layer(); local [all...] |
/external/chromium_org/ui/compositor/ |
layer_unittest.cc | 17 #include "cc/layers/layer.h" 22 #include "ui/compositor/layer.h" 40 // Layer's slightly differently: 48 class ColoredLayer : public Layer, public LayerDelegate { 51 : Layer(LAYER_TEXTURED), 106 Layer* CreateLayer(LayerType type) { 107 return new Layer(type); 110 Layer* CreateColorLayer(SkColor color, const gfx::Rect& bounds) { 111 Layer* layer = new ColoredLayer(color) local 117 Layer* layer = CreateLayer(LAYER_NOT_DRAWN); local 374 Layer* layer = new ColoredLayer(color); local 380 Layer* layer = CreateLayer(LAYER_NOT_DRAWN); local 567 Layer* layer = new Layer(type); variable 573 Layer* layer = CreateTextureLayer(bounds); local 579 Layer* layer = CreateLayer(LAYER_TEXTURED); local 585 Layer* layer = CreateLayer(LAYER_NOT_DRAWN); variable [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...] |
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest_occlusion.cc | 7 #include "cc/layers/layer.h" 16 class TestLayer : public Layer { 44 TestLayer() : Layer() { 76 void VerifyOcclusion(TestLayer* layer) const { 77 EXPECT_EQ(layer->expected_occlusion().ToString(), 78 layer->occlusion().ToString()); 80 for (size_t i = 0; i < layer->children().size(); ++i) { 81 TestLayer* child = static_cast<TestLayer*>(layer->children()[i].get()); 86 void SetLayerPropertiesForTesting(TestLayer* layer, 92 layer->RemoveAllChildren() [all...] |
layer_tree_host_common.h | 23 class Layer; 87 typedef CalcDrawPropsInputs<Layer, RenderSurfaceLayerList> 89 typedef CalcDrawPropsInputsForTesting<Layer, RenderSurfaceLayerList> 117 const base::Callback<void(LayerType* layer)>& function); 119 // Returns a layer with the given id if one exists in the subtree starting 120 // from the given root layer (including mask and replica layers). 124 static Layer* get_child_as_raw_ptr( 152 LayerType* layer, 154 // A layer will either contribute its own content, or its render surface's 155 // content, to the target surface. The layer contributes its surface's conten [all...] |
layer_tree_impl.h | 60 // Methods called by the layer tree that pass-through or access LTHI. 87 // Tree specific methods exposed to layer-impl tree. 119 void SetCurrentlyScrollingLayer(LayerImpl* layer); 156 // Updates draw properties and render surface layer list, as well as tile 186 void RegisterLayer(LayerImpl* layer); 187 void UnregisterLayer(LayerImpl* layer); 227 void AddLayerWithCopyOutputRequest(LayerImpl* layer); 228 void RemoveLayerWithCopyOutputRequest(LayerImpl* layer);
|
layer_tree_host.cc | 28 #include "cc/layers/layer.h" 175 // The layer tree must be destroyed before the layer tree host. We've 186 static void LayerTreeHostOnOutputSurfaceCreatedCallback(Layer* layer) { 187 layer->OnOutputSurfaceCreated(); 273 // code that is logically a main thread operation, e.g. deletion of a Layer, 359 : Layer::INVALID_ID); 507 std::stack<Layer*> layer_stack; 510 Layer* current_layer = layer_stack.top() 1059 Layer* layer = local [all...] |
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_copybit.cpp | 147 //GPU/CPU composition, don't change layer composition type 184 // numAppLayers-1, as we iterate till 0th layer index 195 // be drawn on the framebuffer or that are on the layer cache. 197 //There is no need to reset layer properties here as we return in 230 if(mCopyBitDraw == false) // there is no layer marked for copybit 236 ALOGE("%s: Render buffer layer handle is NULL", __FUNCTION__); 252 // numAppLayers-1, as we iterate from 0th layer index with HWC_COPYBIT flag 254 hwc_layer_1_t *layer = &list->hwLayers[i]; local 286 int CopyBit::drawLayerUsingCopybit(hwc_context_t *dev, hwc_layer_1_t *layer, 296 private_handle_t *hnd = (private_handle_t *)layer->handle [all...] |
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_copybit.cpp | 147 //GPU/CPU composition, don't change layer composition type 184 // numAppLayers-1, as we iterate till 0th layer index 195 // be drawn on the framebuffer or that are on the layer cache. 197 //There is no need to reset layer properties here as we return in 230 if(mCopyBitDraw == false) // there is no layer marked for copybit 236 ALOGE("%s: Render buffer layer handle is NULL", __FUNCTION__); 252 // numAppLayers-1, as we iterate from 0th layer index with HWC_COPYBIT flag 254 hwc_layer_1_t *layer = &list->hwLayers[i]; local 286 int CopyBit::drawLayerUsingCopybit(hwc_context_t *dev, hwc_layer_1_t *layer, 296 private_handle_t *hnd = (private_handle_t *)layer->handle [all...] |
/external/chromium_org/ash/wm/ |
system_modal_container_layout_manager.cc | 19 #include "ui/compositor/layer.h" 126 // system modal window layer which added event filter. 127 // Now this lock modal windows layer layout manager should not block events 128 // for windows at lock layer. 134 // above the lock screen layer (crbug.com/110920). 163 modal_background_->GetNativeView()->layer()->SetOpacity(0.0f); 167 modal_background_->GetNativeView()->layer()->GetAnimator()); 169 modal_background_->GetNativeView()->layer()->SetOpacity(0.5f); 178 modal_background_->GetNativeView()->layer()->GetAnimator()); 182 modal_background_->GetNativeView()->layer()->SetOpacity(0.0f) [all...] |
workspace_controller_unittest.cc | 31 #include "ui/compositor/layer.h" 55 // child layers of |window|'s layer. Any layers that don't correspond to a child 56 // Window of |window| are ignored. The result is ordered based on the layer 59 typedef std::map<const ui::Layer*, std::string> LayerToWindowNameMap; 62 window_names[window->children()[i]->layer()] = 67 const std::vector<ui::Layer*>& layers(window->layer()->children()); 155 ASSERT_TRUE(w1->layer() != NULL); 156 EXPECT_TRUE(w1->layer()->visible()); 173 ASSERT_TRUE(w1->layer() != NULL) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/ |
intel_mipmap_tree.h | 40 /* A layer on top of the intel_regions code which adds: 411 /** \brief Assert that the level and layer are valid for the miptree. */ 415 uint32_t layer) 419 assert(layer < mt->level[level].depth); 482 uint32_t layer); 593 unsigned int level, unsigned int layer, enum gen6_hiz_op op) 602 unsigned int level, unsigned int layer, enum gen6_hiz_op op);
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
intel_mipmap_tree.h | 40 /* A layer on top of the intel_regions code which adds: 411 /** \brief Assert that the level and layer are valid for the miptree. */ 415 uint32_t layer) 419 assert(layer < mt->level[level].depth); 482 uint32_t layer); 593 unsigned int level, unsigned int layer, enum gen6_hiz_op op) 602 unsigned int level, unsigned int layer, enum gen6_hiz_op op);
|
/external/qemu/distrib/sdl-1.2.15/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/chromium_org/cc/layers/ |
painted_scrollbar_layer_impl.cc | 10 #include "cc/layers/layer.h" 40 scroll_layer_id_(Layer::INVALID_ID) {} 50 void PaintedScrollbarLayerImpl::PushPropertiesTo(LayerImpl* layer) { 51 ScrollbarLayerImplBase::PushPropertiesTo(layer); 54 static_cast<PaintedScrollbarLayerImpl*>(layer);
|
ui_resource_layer.cc | 59 : Layer(), 107 Layer::SetLayerTreeHost(host); 144 Layer::DrawsContent(); 147 void UIResourceLayer::PushPropertiesTo(LayerImpl* layer) { 148 Layer::PushPropertiesTo(layer); 149 UIResourceLayerImpl* layer_impl = static_cast<UIResourceLayerImpl*>(layer);
|
ui_resource_layer_impl.cc | 35 void UIResourceLayerImpl::PushPropertiesTo(LayerImpl* layer) { 36 LayerImpl::PushPropertiesTo(layer); 37 UIResourceLayerImpl* layer_impl = static_cast<UIResourceLayerImpl*>(layer);
|
video_layer_impl.cc | 32 scoped_ptr<VideoLayerImpl> layer(new VideoLayerImpl(tree_impl, id)); 33 layer->SetProviderClientImpl(VideoFrameProviderClientImpl::Create(provider)); 36 return layer.Pass(); 45 // In impl side painting, we may have a pending and active layer 61 void VideoLayerImpl::PushPropertiesTo(LayerImpl* layer) { 62 LayerImpl::PushPropertiesTo(layer); 64 VideoLayerImpl* other = static_cast<VideoLayerImpl*>(layer); 79 // drawing, the layer will not be destroyed before DidDraw is called.
|
/external/chromium_org/chrome/browser/ui/webui/options/ |
options_browsertest.js | 535 // Open a layer-1 overlay, not updating history. 541 // Open a layer-2 overlay for which the layer-1 is a parent, not updating 551 // Open a layer-1 overlay, updating history. 557 // Open a layer-2 overlay, updating history. 565 // Open a layer-1 overlay, updating history. 569 // Open a layer-2 overlay, replacing history. 579 // Open a layer-2 overlay directly. 586 // Directly show a layer-2 overlay for which the layer-1 overlay is not [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_blorp.h | 67 unsigned int level, unsigned int layer); 105 unsigned int level, unsigned int layer); 223 unsigned int level, unsigned int layer,
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_blorp.h | 67 unsigned int level, unsigned int layer); 105 unsigned int level, unsigned int layer); 223 unsigned int level, unsigned int layer,
|