| Index: cc/occlusion_tracker.h
|
| diff --git a/cc/occlusion_tracker.h b/cc/occlusion_tracker.h
|
| index bd4e198754e93783fb45fbeba03110f5a3c42c96..76981033942546aab223a6353f09a2a942cedcf6 100644
|
| --- a/cc/occlusion_tracker.h
|
| +++ b/cc/occlusion_tracker.h
|
| @@ -53,6 +53,7 @@ public:
|
|
|
| // The following is used for visualization purposes.
|
| void setOccludingScreenSpaceRectsContainer(std::vector<gfx::Rect>* rects) { m_occludingScreenSpaceRects = rects; }
|
| + void setNonOccludingScreenSpaceRectsContainer(std::vector<gfx::Rect>* rects) { m_nonOccludingScreenSpaceRects = rects; }
|
|
|
| protected:
|
| struct StackObject {
|
| @@ -96,6 +97,7 @@ private:
|
|
|
| // This is used for visualizing the occlusion tracking process.
|
| std::vector<gfx::Rect>* m_occludingScreenSpaceRects;
|
| + std::vector<gfx::Rect>* m_nonOccludingScreenSpaceRects;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OcclusionTrackerBase);
|
| };
|
|
|