Files
wgpu/tests/gpu-tests/texture_binding/shader.wgsl
2025-02-23 14:06:34 -05:00

6 lines
149 B
WebGPU Shading Language

@group(0) @binding(0)
var tex: texture_storage_2d<rg32float, read>;
@compute @workgroup_size(1) fn csStore() {
_ = textureLoad(tex, vec2u(0));
}