enne | fffb119c | 2015-08-29 09:17:30 | [diff] [blame] | 1 | // Copyright 2015 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/layers/draw_properties.h" |
| 6 | |
| 7 | namespace cc { |
| 8 | |
| 9 | DrawProperties::DrawProperties() |
| 10 | : opacity(0.f), |
| 11 | screen_space_transform_is_animating(false), |
sunxd | f468675e | 2016-06-30 23:56:18 | [diff] [blame] | 12 | is_clipped(false) {} |
enne | fffb119c | 2015-08-29 09:17:30 | [diff] [blame] | 13 | |
| 14 | DrawProperties::~DrawProperties() {} |
| 15 | |
| 16 | } // namespace cc |