DEBSOURCES
Skip Quicknav
sources / wpewebkit / 2.50.4-1 / Tools / TestWebKitAPI / Tests / WGSL / shaders / while.wgsl
12345678
@compute @workgroup_size(1, 1, 1) fn testWhileStatement() { var i = 0; while i < 10 { i = i + 1; } }