[][src]Function web_glitz::task::join_left

pub fn join_left<A, B, Ec>(a: A, b: B) -> JoinLeft<A, B, Ec> where
    A: GpuTask<Ec>,
    B: GpuTask<Ec>, 

Combines task a with another task b, waiting for both tasks to complete in no particular order, with the output of task a.

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

See also join_right.

Panics

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