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