blob: 8ed54fd38ff5f006d7b01c7ff56be2d6266f3f8c [file] [log] [blame]
Ben Clayton3a431d72023-03-04 00:43:21 +00001@group(1) @binding(0) var arg_0 : texture_storage_3d<rgba32uint, write>;
2
3fn textureStore_d4aa95() {
4 var arg_1 = vec3<u32>(1u);
5 var arg_2 = vec4<u32>(1u);
6 textureStore(arg_0, arg_1, arg_2);
7}
8
Ben Clayton3a431d72023-03-04 00:43:21 +00009@fragment
10fn fragment_main() {
11 textureStore_d4aa95();
12}
13
14@compute @workgroup_size(1)
15fn compute_main() {
16 textureStore_d4aa95();
17}