[−][src]Function web_glitz::task::sequence3_left
pub fn sequence3_left<A, B, C, Ec>(
a: A,
b: B,
c: C
) -> Sequence3Left<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 order, with the output of
task a.
Similar to sequence3, except that instead of returning a tuple of the outputs of a, b and
c, it only returns the output of a.
See also sequence3_right.
Panics
Panics if the ContextIds a, b and c are not compatible.