// Copyright 2026 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! The flood filter.
usecrate::color::{AlphaColor, Srgb};/// A flood filter.
#[derive(Debug)]pubstructFlood{/// The flood color.
pubcolor:AlphaColor<Srgb>,
}implFlood{/// Create a new flood filter with the specified color.
pubfnnew(color:AlphaColor<Srgb>)->Self{Self{ color }}}