Sign in
dawn
/
dawn
/
7cbd8202e6715ee5d51314bd1e745a5243da82c1
/
.
/
test
/
tint
/
statements
/
compound_assign
/
vector
/
divide-scalar.wgsl.expected.glsl
blob: be28e4336b86fd2c0299f4dff46611c9acd9623c [
file
] [
log
] [
blame
]
#version 310 es
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
struct
S
{
vec4 a
;
};
layout
(
binding
=
0
,
std430
)
buffer S_1
{
vec4 a
;
}
v
;
void
foo
()
{
v
.
a
=
(
v
.
a
/
2.0f
);
}