blob: a6e01ac98404f840ea2677d1a400cb769734265c [file] [log] [blame]
intrinsics/gen/textureLoad/078bc4.wgsl:29:24 warning: use of deprecated intrinsic
var res: vec4<f32> = textureLoad(arg_0, vec2<i32>());
^^^^^^^^^^^
[[group(1), binding(0)]] var arg_0 : texture_storage_2d<rgba8snorm, read>;
fn textureLoad_078bc4() {
var res : vec4<f32> = textureLoad(arg_0, vec2<i32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
textureLoad_078bc4();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
textureLoad_078bc4();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
textureLoad_078bc4();
}