26 lines
619 B
WebGPU Shading Language
26 lines
619 B
WebGPU Shading Language
intrinsics/gen/textureLoad/b58c6d.wgsl:29:24 warning: use of deprecated intrinsic
|
|
var res: vec4<f32> = textureLoad(arg_0, vec2<i32>(), 1);
|
|
^^^^^^^^^^^
|
|
|
|
[[group(1), binding(0)]] var arg_0 : texture_storage_2d_array<r32float, read>;
|
|
|
|
fn textureLoad_b58c6d() {
|
|
var res : vec4<f32> = textureLoad(arg_0, vec2<i32>(), 1);
|
|
}
|
|
|
|
[[stage(vertex)]]
|
|
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
|
|
textureLoad_b58c6d();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
[[stage(fragment)]]
|
|
fn fragment_main() {
|
|
textureLoad_b58c6d();
|
|
}
|
|
|
|
[[stage(compute), workgroup_size(1)]]
|
|
fn compute_main() {
|
|
textureLoad_b58c6d();
|
|
}
|