blob: e3fc8d3fc9aec186338e21b3580a25fb1c5f3a9a [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_storage_3d<rg32sint, write>;
fn textureDimensions_e738f4() {
var res : vec3<u32> = textureDimensions(arg_0);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec3<u32>;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureDimensions_e738f4();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureDimensions_e738f4();
}
@compute @workgroup_size(1)
fn compute_main() {
textureDimensions_e738f4();
}