blob: dcdb2e945bc06eab88611e3ebb6aca1f77d71f86 [file] [log] [blame] [edit]
// Copyright 2013 The Flutter 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 FLUTTER_FLOW_VIEW_SLICER_H_
#define FLUTTER_FLOW_VIEW_SLICER_H_
#include <unordered_map>
#include "display_list/dl_canvas.h"
#include "flow/embedded_views.h"
namespace flutter {
/// @brief Compute the required overlay layers and clip the view slices
/// according to the size and position of the platform views.
std::unordered_map<int64_t, DlRect> SliceViews(
DlCanvas* background_canvas,
const std::vector<int64_t>& composition_order,
const std::unordered_map<int64_t, std::unique_ptr<EmbedderViewSlice>>&
slices,
const std::unordered_map<int64_t, DlRect>& view_rects);
} // namespace flutter
#endif // FLUTTER_FLOW_VIEW_SLICER_H_