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