mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-04 03:05:42 +00:00
Fixed: tint:1772 Change-Id: I4bed36ded91ca5288875ed6ea819ff4bbb432186 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/112340 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: James Price <jrprice@google.com>
11 lines
116 B
WebGPU Shading Language
11 lines
116 B
WebGPU Shading Language
type a = vec3f;
|
|
|
|
fn f() {
|
|
{
|
|
const vec3f = 1;
|
|
const b = vec3f;
|
|
}
|
|
const c = a();
|
|
const d = vec3f();
|
|
}
|