[][src]Function web_glitz::task::sequence_left

pub fn sequence_left<A, B, Ec>(a: A, b: B) -> SequenceLeft<A, B, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>, 

Combines task a with another task b, waiting for both tasks to complete in order, with the output of task a.

Similar to sequence, except that instead of returning a tuple of the outputs of a and b, it only returns the output of a.

See also sequence_right.

Panics

Panics if the ContextIds of a and b are not compatible.