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