mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-31 11:41:35 +00:00
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>
11 lines
156 B
WebGPU Shading Language
11 lines
156 B
WebGPU Shading Language
fn some_loop_body() {
|
|
}
|
|
|
|
fn f() {
|
|
var j : i32;
|
|
for(var i : i32 = 0; ((i < 5) && (j < 10)); i = (i + 1)) {
|
|
some_loop_body();
|
|
j = (i * 30);
|
|
}
|
|
}
|