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