gsk4/blur_node.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use crate::{BlurNode, RenderNodeType};
4
5define_render_node!(BlurNode, crate::ffi::GskBlurNode, RenderNodeType::BlurNode);
6
7impl std::fmt::Debug for BlurNode {
8 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
9 f.debug_struct("BlurNode")
10 .field("child", &self.child())
11 .field("radius", &self.radius())
12 .finish()
13 }
14}