mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-04 13:41:42 +00:00
Fix various issue with formatting for loop. Add tests. Bug: tint:952 Change-Id: I704341a15f0050ebf82df219d0c7d068a3a63c26 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/58064 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: James Price <jrprice@google.com>
12 lines
106 B
HLSL
12 lines
106 B
HLSL
[numthreads(1, 1, 1)]
|
|
void unused_entry_point() {
|
|
return;
|
|
}
|
|
|
|
void f() {
|
|
{
|
|
for(; ; ) {
|
|
}
|
|
}
|
|
}
|