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