pub trait GlobalPlay {
// Required methods
fn encode_commands(
&self,
encoder: CommandEncoderId,
commands: Vec<Command>,
) -> CommandBufferId;
fn process(
&self,
device: DeviceId,
queue: QueueId,
action: Action<'_>,
dir: &Path,
comb_manager: &mut IdentityManager<CommandBuffer>,
);
}