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