blob: 2cc7a0fa80e5b79dc324110e5a6a2734a42cd717 [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rgba32sint, read>;
fn textureLoad_2a82d9() {
var res : vec4<i32> = textureLoad(arg_0, vec2<u32>(1u), 1u);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec4<i32>;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureLoad_2a82d9();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureLoad_2a82d9();
}
@compute @workgroup_size(1)
fn compute_main() {
textureLoad_2a82d9();
}