mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 03:11:29 +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>
9 lines
109 B
WebGPU Shading Language
9 lines
109 B
WebGPU Shading Language
fn some_loop_body() {
|
|
}
|
|
|
|
fn f() {
|
|
for(var i : i32 = 0; (i < 5); i = (i + 1)) {
|
|
some_loop_body();
|
|
}
|
|
}
|