[][src]Function web_glitz::task::join3_left

pub fn join3_left<A, B, C, Ec>(a: A, b: B, c: C) -> Join3Left<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 a.

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

See also join3_right.

Panics

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