Roll WebRTC 9217:9227, Libjingle 9216:9227
[chromium-blink-merge.git] / cc / tiles / tile_draw_info.cc
blobe523079aac924b0f03619ce8cd5dc50689be139c
1 // Copyright 2013 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 #include "cc/tiles/tile_draw_info.h"
7 #include "cc/base/math_util.h"
9 namespace cc {
11 TileDrawInfo::TileDrawInfo()
12 : mode_(RESOURCE_MODE), solid_color_(SK_ColorWHITE) {
15 TileDrawInfo::~TileDrawInfo() {
16 DCHECK(!resource_);
19 void TileDrawInfo::AsValueInto(base::trace_event::TracedValue* state) const {
20 state->SetBoolean("is_solid_color", mode_ == SOLID_COLOR_MODE);
21 state->SetBoolean("is_transparent",
22 mode_ == SOLID_COLOR_MODE && !SkColorGetA(solid_color_));
25 } // namespace cc