pub trait ComputeCommand:
DynPartialEqCompute
+ AsAny
+ Send
+ Sync {
// Required method
fn barrier(&self) -> BarrierRequirement;
}Expand description
Trait for GPU compute operations that can be dispatched through the unified command system.
Required Methods§
Sourcefn barrier(&self) -> BarrierRequirement
fn barrier(&self) -> BarrierRequirement
Declares the dependency on previously rendered content for barrier planning.