logo
pub unsafe trait RenderGate {
    unsafe fn enter_render_state(&mut self, rdr_st: &RenderState);
}
Expand description

Render gate and associated RenderState.

Required Methods

Enter the RenderGate and share the RenderState for all subsequent nodes in the pipeline.

Implementors