DEBSOURCES
Skip Quicknav
sources / webkit2gtk / 2.48.5-1 / Source / WebGPU / WGSL / tests / valid / while.wgsl
12345678910
// RUN: %metal-compile testWhileStatement @compute @workgroup_size(1, 1, 1) fn testWhileStatement() { var i = 0; while i < 10 { i = i + 1; } }