chromium/cc/tiles/tiling_internal.h

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

#ifndef CC_TILES_TILING_INTERNAL_H_
#define CC_TILES_TILING_INTERNAL_H_

#include <concepts>

#include "cc/base/tiling_data.h"
#include "cc/tiles/tile_index.h"
#include "ui/gfx/geometry/axis_transform2d.h"
#include "ui/gfx/geometry/size.h"

namespace cc::internal {

// A tile-like type needs to expose whether or not its ready to draw, as this
// influences coverage iteration.
TileLike;

// For a type to be used as a tiling by TilingCoverageIterator and
// TilingSetCoverageIterator it must present a nested Tile type and a few common
// methods.
Tiling;

}  // namespace cc::internal

#endif  // CC_TILES_TILING_INTERNAL_H_