[−][src]Function web_glitz::task::sequence4_left
pub fn sequence4_left<A, B, C, D, Ec>(
a: A,
b: B,
c: C,
d: D
) -> Sequence4Left<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 order,
with the output of task a.
Similar to sequence4, 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 sequence4_right.
Panics
Panics if the ContextIds a, b, c and d are not compatible.