mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Some now pass, some still fail. If we fix bugs and they begin to pass, we have a better chance of noticing and marking the issues as fixed. Change-Id: I7278f960967a570ccde8865dcf2aa580235559bf Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/54062 Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: David Neto <dneto@google.com>
16 lines
439 B
WebGPU Shading Language
16 lines
439 B
WebGPU Shading Language
bug/tint/294.wgsl:8:24 warning: use of deprecated language feature: declare access with var<storage, read> instead of using [[access]] decoration
|
|
[[set(0), binding(1)]] var<storage> lights : [[access(read)]] Lights;
|
|
^^^
|
|
|
|
struct Light {
|
|
position : vec3<f32>;
|
|
colour : vec3<f32>;
|
|
};
|
|
|
|
[[block]]
|
|
struct Lights {
|
|
light : [[stride(32)]] array<Light>;
|
|
};
|
|
|
|
[[group(0), binding(1)]] var<storage, read> lights : Lights;
|