Sign in
dawn
/
dawn
/
HEAD
/
.
/
test
/
tint
/
statements
/
compound_assign
/
vector
/
plus-scalar.wgsl
blob: a4e50d9c1d1869f825db1966ffde484bbd4c2057 [
file
] [
log
] [
blame
]
struct
S
{
a
:
vec4
<f32>
,
}
@group
(
0
)
@binding
(
0
)
var
<
storage
,
read_write
>
v
:
S
;
@compute
@workgroup_size
(
1
)
fn foo
()
{
v
.
a
+=
2.0
;
}