[][src]Function web_glitz::task::join4_left

pub fn join4_left<A, B, C, D, Ec>(
    a: A,
    b: B,
    c: C,
    d: D
) -> Join4Left<A, B, C, D, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>,
    C: GpuTask<Ec>,
    D: GpuTask<Ec>, 

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

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

See also join4_right.

Panics

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