OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/containers/hash_tables.h" | 5 #include "base/containers/hash_tables.h" |
6 #include "cc/layers/append_quads_data.h" | 6 #include "cc/layers/append_quads_data.h" |
7 #include "cc/layers/nine_patch_layer_impl.h" | 7 #include "cc/layers/nine_patch_layer_impl.h" |
8 #include "cc/quads/texture_draw_quad.h" | 8 #include "cc/quads/texture_draw_quad.h" |
9 #include "cc/resources/ui_resource_bitmap.h" | 9 #include "cc/resources/ui_resource_bitmap.h" |
10 #include "cc/resources/ui_resource_client.h" | 10 #include "cc/resources/ui_resource_client.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 scoped_ptr<RenderPass> render_pass = RenderPass::Create(); | 39 scoped_ptr<RenderPass> render_pass = RenderPass::Create(); |
40 gfx::Rect visible_layer_rect(layer_size); | 40 gfx::Rect visible_layer_rect(layer_size); |
41 gfx::Rect expected_remaining(border.x(), | 41 gfx::Rect expected_remaining(border.x(), |
42 border.y(), | 42 border.y(), |
43 layer_size.width() - border.width(), | 43 layer_size.width() - border.width(), |
44 layer_size.height() - border.height()); | 44 layer_size.height() - border.height()); |
45 | 45 |
46 FakeImplProxy proxy; | 46 FakeImplProxy proxy; |
47 TestSharedBitmapManager shared_bitmap_manager; | 47 TestSharedBitmapManager shared_bitmap_manager; |
48 TestTaskGraphRunner task_graph_runner; | 48 TestTaskGraphRunner task_graph_runner; |
| 49 scoped_ptr<OutputSurface> output_surface = FakeOutputSurface::Create3d(); |
49 FakeUIResourceLayerTreeHostImpl host_impl(&proxy, &shared_bitmap_manager, | 50 FakeUIResourceLayerTreeHostImpl host_impl(&proxy, &shared_bitmap_manager, |
50 &task_graph_runner); | 51 &task_graph_runner); |
51 host_impl.InitializeRenderer(FakeOutputSurface::Create3d()); | 52 host_impl.InitializeRenderer(output_surface.get()); |
52 | 53 |
53 scoped_ptr<NinePatchLayerImpl> layer = | 54 scoped_ptr<NinePatchLayerImpl> layer = |
54 NinePatchLayerImpl::Create(host_impl.active_tree(), 1); | 55 NinePatchLayerImpl::Create(host_impl.active_tree(), 1); |
55 layer->draw_properties().visible_layer_rect = visible_layer_rect; | 56 layer->draw_properties().visible_layer_rect = visible_layer_rect; |
56 layer->SetBounds(layer_size); | 57 layer->SetBounds(layer_size); |
57 layer->SetHasRenderSurface(true); | 58 layer->SetHasRenderSurface(true); |
58 layer->draw_properties().render_target = layer.get(); | 59 layer->draw_properties().render_target = layer.get(); |
59 | 60 |
60 UIResourceId uid = 1; | 61 UIResourceId uid = 1; |
61 bool is_opaque = false; | 62 bool is_opaque = false; |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 | 334 |
334 const QuadList &quad_list = impl.quad_list(); | 335 const QuadList &quad_list = impl.quad_list(); |
335 for (QuadList::ConstBackToFrontIterator it = quad_list.BackToFrontBegin(); | 336 for (QuadList::ConstBackToFrontIterator it = quad_list.BackToFrontBegin(); |
336 it != quad_list.BackToFrontEnd(); ++it) | 337 it != quad_list.BackToFrontEnd(); ++it) |
337 EXPECT_TRUE(it->ShouldDrawWithBlending()); | 338 EXPECT_TRUE(it->ShouldDrawWithBlending()); |
338 } | 339 } |
339 } | 340 } |
340 | 341 |
341 } // namespace | 342 } // namespace |
342 } // namespace cc | 343 } // namespace cc |
OLD | NEW |