[−][src]Function web_glitz::task::sequence4_right
pub fn sequence4_right<A, B, C, D, Ec>(
a: A,
b: B,
c: C,
d: D
) -> Sequence4Right<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 d.
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 d.
See also sequence4_left.
Panics
Panics if the ContextIds a, b, c and d are not compatible.