mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 11:21:40 +00:00
These are expressions, and not specific to `var`s. Break the tests up into finer granularity. Bug: tint:656 Change-Id: I6873407127871dfaec55d90f02e0490eef929a30 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/56071 Commit-Queue: Ben Clayton <bclayton@google.com> Auto-Submit: Ben Clayton <bclayton@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
6 lines
152 B
WebGPU Shading Language
6 lines
152 B
WebGPU Shading Language
fn f() {
|
|
var v2 : vec2<f32> = vec2<f32>(1.0 + 2.0);
|
|
var v3 : vec3<f32> = vec3<f32>(1.0 + 2.0);
|
|
var v4 : vec4<f32> = vec4<f32>(1.0 + 2.0);
|
|
}
|