[][src]Function web_glitz::task::sequence3_right

pub fn sequence3_right<A, B, C, Ec>(
    a: A,
    b: B,
    c: C
) -> Sequence3Right<A, B, C, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>,
    C: GpuTask<Ec>, 

Combines task a, b and c, waiting for all tasks to complete in order, with the output of task c.

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

See also sequence3_left.

Panics

Panics if the ContextIds a, b and c are not compatible.