[][src]Function web_glitz::task::sequence_right

pub fn sequence_right<A, B, Ec>(a: A, b: B) -> SequenceRight<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 b.

See also sequence_left.

Panics

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