1 2 3 4 5 6 7 8 9 10 11
use crate::metal::RenderpassDef; pub struct RafxRenderpassMetal { pub(crate) def: RenderpassDef, } impl RafxRenderpassMetal { pub fn new(def: RenderpassDef) -> Self { RafxRenderpassMetal { def } } }