[][src]Function web_glitz::task::join3_right

pub fn join3_right<A, B, C, Ec>(a: A, b: B, c: C) -> Join3Right<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 no particular order, with the output of task c.

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

See also join3_left.

Panics

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