mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-08 14:15:58 +00:00
The `default` case selector has been implemented in Tint. This CL updates the deprecation notice with that fact along with some more information on replacements. Bug: tint:1644 Change-Id: I883b4465d11d9696d46523d11e66c9a2dc2777ac Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/106460 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Auto-Submit: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
17 lines
489 B
WebGPU Shading Language
17 lines
489 B
WebGPU Shading Language
statements/switch/fallthrough.wgsl:6:13 warning: use of deprecated language feature: fallthrough is set to be removed from WGSL. Case can accept multiple selectors if the existing case bodies are empty. (e.g. `case 1, 2, 3:`) `default` is a valid case selector value. (e.g. `case 1, default:`)
|
|
fallthrough;
|
|
^^^^^^^^^^^
|
|
|
|
@compute @workgroup_size(1)
|
|
fn f() {
|
|
var i : i32;
|
|
switch(i) {
|
|
case 0: {
|
|
fallthrough;
|
|
}
|
|
default: {
|
|
break;
|
|
}
|
|
}
|
|
}
|