| Index: cc/resources/software_rasterizer.cc
|
| diff --git a/cc/resources/software_rasterizer.cc b/cc/resources/software_rasterizer.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6ffedacfcbeb88d9dcb00daa3a126528058ba161
|
| --- /dev/null
|
| +++ b/cc/resources/software_rasterizer.cc
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "cc/resources/software_rasterizer.h"
|
| +
|
| +namespace cc {
|
| +
|
| +scoped_ptr<SoftwareRasterizer> SoftwareRasterizer::Create() {
|
| + return make_scoped_ptr<SoftwareRasterizer>(new SoftwareRasterizer());
|
| +}
|
| +
|
| +SoftwareRasterizer::SoftwareRasterizer() {
|
| +}
|
| +
|
| +SoftwareRasterizer::~SoftwareRasterizer() {
|
| +}
|
| +
|
| +PrepareTilesMode SoftwareRasterizer::GetPrepareTilesMode() {
|
| + return PrepareTilesMode::RASTERIZE_PRIORITIZED_TILES;
|
| +}
|
| +
|
| +void SoftwareRasterizer::RasterizeTiles(
|
| + const TileVector& tiles,
|
| + ResourcePool* resource_pool,
|
| + const UpdateTileDrawInfoCallback& update_tile_draw_info) {
|
| +}
|
| +
|
| +} // namespace cc
|
|
|