blob: d8bd8a2d162701596f5a8f8e6b83c68ce85d1b8b [file] [log] [blame]
@group(0) @binding(0) var t_f : texture_3d<f32>;
@group(0) @binding(1) var t_i : texture_3d<i32>;
@group(0) @binding(2) var t_u : texture_3d<u32>;
@compute @workgroup_size(1)
fn main() {
_ = t_f;
_ = t_i;
_ = t_u;
}