dawn-cmake/test/tint/builtins/gen/var/textureStore/be6e30.wgsl.expected.wgsl

24 lines
460 B
WebGPU Shading Language
Raw Normal View History

@group(1) @binding(0) var arg_0 : texture_storage_2d<rgba16float, write>;
fn textureStore_be6e30() {
var arg_1 = vec2<i32>();
var arg_2 = vec4<f32>();
textureStore(arg_0, arg_1, arg_2);
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
textureStore_be6e30();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
textureStore_be6e30();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
textureStore_be6e30();
}