mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-02 12:41:36 +00:00
Bug: tint:1013 Change-Id: I38fb8988e48ff5bbfc55f57e5e3fd3f9c3b361cd Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/59662 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
26 lines
609 B
WebGPU Shading Language
26 lines
609 B
WebGPU Shading Language
intrinsics/gen/textureLoad/62d125.wgsl:29:24 warning: use of deprecated intrinsic
|
|
var res: vec4<f32> = textureLoad(arg_0, vec3<i32>());
|
|
^^^^^^^^^^^
|
|
|
|
[[group(1), binding(0)]] var arg_0 : texture_storage_3d<rgba8snorm, read>;
|
|
|
|
fn textureLoad_62d125() {
|
|
var res : vec4<f32> = textureLoad(arg_0, vec3<i32>());
|
|
}
|
|
|
|
[[stage(vertex)]]
|
|
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
|
|
textureLoad_62d125();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
[[stage(fragment)]]
|
|
fn fragment_main() {
|
|
textureLoad_62d125();
|
|
}
|
|
|
|
[[stage(compute), workgroup_size(1)]]
|
|
fn compute_main() {
|
|
textureLoad_62d125();
|
|
}
|