cc: Pass Occlusion instead of OcclusionTracker to LayerImpls
[chromium-blink-merge.git] / cc / layers / paint_properties.h
blob323e9499edb520e9a54fda9f768d7410d0ea68c5
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.
5 #ifndef CC_LAYERS_PAINT_PROPERTIES_H_
6 #define CC_LAYERS_PAINT_PROPERTIES_H_
8 #include "ui/gfx/size.h"
10 namespace cc {
12 // Container for properties that layers need to save before they can be paint.
13 struct CC_EXPORT PaintProperties {
14 PaintProperties() : source_frame_number(-1) {}
16 gfx::Size bounds;
18 int source_frame_number;
21 } // namespace cc
23 #endif // CC_LAYERS_PAINT_PROPERTIES_H_