blob: 05c08eaaa2700e865503103a8aa10ce4e958bd16 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : vec2<u32>;
@group(1) @binding(0) var arg_0 : texture_storage_2d<r32uint, write>;
fn textureDimensions_dc83ce() -> vec2<u32> {
var res : vec2<u32> = textureDimensions(arg_0);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = textureDimensions_dc83ce();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = textureDimensions_dc83ce();
}