blob: 5004c885972506c86298b237b32e624c28c9d407 [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_storage_2d_array<rgba8uint, read_write>;
fn textureDimensions_ca10cc() {
var res : vec2<u32> = textureDimensions(arg_0);
prevent_dce = res;
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec2<u32>;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
textureDimensions_ca10cc();
return vec4<f32>();
}
@fragment
fn fragment_main() {
textureDimensions_ca10cc();
}
@compute @workgroup_size(1)
fn compute_main() {
textureDimensions_ca10cc();
}