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