pub unsafe trait MTLParallelRenderCommandEncoder: MTLCommandEncoder + IsRetainable {
// Provided methods
fn renderCommandEncoder(
&self
) -> Option<Retained<ProtocolObject<dyn MTLRenderCommandEncoder>>>
where Self: Sized + Message { ... }
unsafe fn setColorStoreAction_atIndex(
&self,
store_action: MTLStoreAction,
color_attachment_index: NSUInteger
)
where Self: Sized + Message { ... }
unsafe fn setDepthStoreAction(&self, store_action: MTLStoreAction)
where Self: Sized + Message { ... }
unsafe fn setStencilStoreAction(&self, store_action: MTLStoreAction)
where Self: Sized + Message { ... }
unsafe fn setColorStoreActionOptions_atIndex(
&self,
store_action_options: MTLStoreActionOptions,
color_attachment_index: NSUInteger
)
where Self: Sized + Message { ... }
unsafe fn setDepthStoreActionOptions(
&self,
store_action_options: MTLStoreActionOptions
)
where Self: Sized + Message { ... }
unsafe fn setStencilStoreActionOptions(
&self,
store_action_options: MTLStoreActionOptions
)
where Self: Sized + Message { ... }
}Available on crate features
MTLCommandEncoder and MTLParallelRenderCommandEncoder only.Provided Methods§
fn renderCommandEncoder( &self ) -> Option<Retained<ProtocolObject<dyn MTLRenderCommandEncoder>>>
Available on crate feature
MTLRenderCommandEncoder only.unsafe fn setColorStoreAction_atIndex( &self, store_action: MTLStoreAction, color_attachment_index: NSUInteger )
Available on crate feature
MTLRenderPass only.unsafe fn setDepthStoreAction(&self, store_action: MTLStoreAction)
Available on crate feature
MTLRenderPass only.unsafe fn setStencilStoreAction(&self, store_action: MTLStoreAction)
Available on crate feature
MTLRenderPass only.unsafe fn setColorStoreActionOptions_atIndex( &self, store_action_options: MTLStoreActionOptions, color_attachment_index: NSUInteger )
Available on crate feature
MTLRenderPass only.unsafe fn setDepthStoreActionOptions( &self, store_action_options: MTLStoreActionOptions )
Available on crate feature
MTLRenderPass only.unsafe fn setStencilStoreActionOptions( &self, store_action_options: MTLStoreActionOptions )
Available on crate feature
MTLRenderPass only.