chromium/cc/tiles/tile_draw_info.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/tiles/tile_draw_info.h"

#include <utility>

#include "base/metrics/histogram_macros.h"
#include "cc/base/math_util.h"

namespace cc {

TileDrawInfo::TileDrawInfo() = default;
TileDrawInfo::~TileDrawInfo() {}

void TileDrawInfo::AsValueInto(base::trace_event::TracedValue* state) const {}

void TileDrawInfo::SetResource(ResourcePool::InUsePoolResource resource,
                               bool resource_is_checker_imaged,
                               bool is_premultiplied) {}

const ResourcePool::InUsePoolResource& TileDrawInfo::GetResource() const {}

ResourcePool::InUsePoolResource TileDrawInfo::TakeResource() {}

}  // namespace cc