blob: 128f7b6abb14ac802234b4fabf3897d877cf676e [file] [log] [blame]
// 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.
#pragma once
#include <optional>
#include "flutter/fml/macros.h"
#include "impeller/aiks/paint.h"
#include "impeller/entity/entity_pass_delegate.h"
namespace impeller {
class PaintPassDelegate final : public EntityPassDelegate {
public:
PaintPassDelegate(Paint paint, std::optional<Rect> coverage);
// |EntityPassDelgate|
~PaintPassDelegate() override;
// |EntityPassDelegate|
std::optional<Rect> GetCoverageRect() override;
// |EntityPassDelgate|
bool CanElide() override;
// |EntityPassDelgate|
bool CanCollapseIntoParentPass() override;
// |EntityPassDelgate|
std::shared_ptr<Contents> CreateContentsForSubpassTarget(
std::shared_ptr<Texture> target,
const Matrix& effect_transform) override;
private:
const Paint paint_;
const std::optional<Rect> coverage_;
FML_DISALLOW_COPY_AND_ASSIGN(PaintPassDelegate);
};
} // namespace impeller