blob: 426f9ddb01c8e12b34e45128b2d05e38f85df5f2 [file] [log] [blame]
Ben Clayton448c01b2024-02-28 00:23:17 +00001enable chromium_internal_graphite;
2
3@group(1) @binding(0) var arg_0 : texture_storage_3d<r8unorm, read_write>;
4
5fn textureStore_803a10() {
6 textureStore(arg_0, vec3<u32>(1u), vec4<f32>(1.0f));
7}
8
Ben Clayton448c01b2024-02-28 00:23:17 +00009@fragment
10fn fragment_main() {
11 textureStore_803a10();
12}
13
14@compute @workgroup_size(1)
15fn compute_main() {
16 textureStore_803a10();
17}