dawn-cmake/test/statements/for/complex.wgsl.expected.msl
Ben Clayton 1b03f0a07a reader/wgsl: Generate ForLoopStatements
Instead of LoopStatements.

Update the writers to handle these.

Fixed: tint:952
Change-Id: Ibef66e133224810efc28c224d910b5e21f71f8d6
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/57203
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: James Price <jrprice@google.com>
2021-07-08 21:23:33 +00:00

15 lines
201 B
Plaintext

#include <metal_stdlib>
using namespace metal;
void some_loop_body() {
}
void f() {
int j = 0;
for(int i = 0; ((i < 5) && (j < 10)); i = (i + 1)) {
some_loop_body();
j = (i * 30);
}
}