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