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