blob: 9c8c9cd2b5ea3e8da7fb8bc6cb8ce952bfa74324 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec4<i32>;
@group(1) @binding(0) var arg_0 : texture_storage_3d<r8sint, read_write>;
fn textureLoad_feb0c4() -> vec4<i32> {
var res : vec4<i32> = textureLoad(arg_0, vec3<u32>(1u));
return res;
}
@fragment
fn fragment_main() {
prevent_dce = textureLoad_feb0c4();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = textureLoad_feb0c4();
}