blob: 6ed28127990d135660e2777c2bac49130cbf5964 [file] [log] [blame]
intrinsics/gen/textureLoad/83cea4.wgsl:29:24 warning: use of deprecated intrinsic
var res: vec4<u32> = textureLoad(arg_0, 1);
^^^^^^^^^^^
[[group(1), binding(0)]] var arg_0 : texture_storage_1d<rgba16uint, read>;
fn textureLoad_83cea4() {
var res : vec4<u32> = textureLoad(arg_0, 1);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
textureLoad_83cea4();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
textureLoad_83cea4();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
textureLoad_83cea4();
}