blob: d799f58d8e251201527e24086c9524932d931109 [file] [log] [blame]
// 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.
#ifndef CC_TILES_PRIORITIZED_TILE_H_
#define CC_TILES_PRIORITIZED_TILE_H_
#include "cc/base/cc_export.h"
#include "cc/tiles/tile.h"
#include "cc/tiles/tile_priority.h"
namespace cc {
class DisplayListRasterSource;
class PictureLayerTiling;
class CC_EXPORT PrioritizedTile {
public:
// This class is constructed and returned by a |PictureLayerTiling|, and
// represents a tile and its priority.
PrioritizedTile();
~PrioritizedTile();
Tile* tile() const { return tile_; }
DisplayListRasterSource* raster_source() const { return raster_source_; }
const TilePriority& priority() const { return priority_; }
bool is_occluded() const { return is_occluded_; }
void AsValueInto(base::trace_event::TracedValue* value) const;
private:
friend class PictureLayerTiling;
PrioritizedTile(Tile* tile,
DisplayListRasterSource* raster_source,
const TilePriority priority,
bool is_occluded);
Tile* tile_;
DisplayListRasterSource* raster_source_;
TilePriority priority_;
bool is_occluded_;
};
} // namespace cc
#endif // CC_TILES_PRIORITIZED_TILE_H_