Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: cc/test/mock_quad_culler.cc

Issue 308193003: Removed QuadSink and MockQuadCuller (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@plumLayerImpl
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/test/mock_quad_culler.h ('k') | cc/test/render_pass_test_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "cc/test/mock_quad_culler.h"
6
7 namespace cc {
8
9 MockQuadCuller::MockQuadCuller(
10 RenderPass* render_pass,
11 MockOcclusionTracker<LayerImpl>* occlusion_tracker)
12 : QuadSink(render_pass, occlusion_tracker),
13 occlusion_tracker_(occlusion_tracker) {
14 }
15
16 MockQuadCuller::~MockQuadCuller() {}
17
18 gfx::Rect MockQuadCuller::UnoccludedContentRect(
19 const gfx::Rect& content_rect,
20 const gfx::Transform& draw_transform) {
21 return occlusion_tracker_->UnoccludedContentRect(content_rect,
22 draw_transform);
23 }
24
25 gfx::Rect MockQuadCuller::UnoccludedContributingSurfaceContentRect(
26 const gfx::Rect& content_rect,
27 const gfx::Transform& draw_transform) {
28 return occlusion_tracker_->UnoccludedContributingSurfaceContentRect(
29 content_rect, draw_transform);
30 }
31
32 } // namespace cc
33
OLDNEW
« no previous file with comments | « cc/test/mock_quad_culler.h ('k') | cc/test/render_pass_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698