dawn-cmake/test/types/sampler.wgsl.expected.wgsl

10 lines
160 B
WebGPU Shading Language
Raw Normal View History

@group(0) @binding(0) var s : sampler;
@group(0) @binding(1) var sc : sampler_comparison;
@stage(compute) @workgroup_size(1)
fn main() {
_ = s;
_ = sc;
}