Sign in
dawn
/
dawn
/
refs/heads/chromium/5044
/
.
/
test
/
tint
/
statements
/
compound_assign
/
scalar
/
divide.wgsl.expected.glsl
blob: 44ec9a967caccf38e0801d46513bdb7c2e044f27 [
file
] [
log
] [
blame
] [
edit
]
#version 310 es
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
unused_entry_point
()
{
return
;
}
struct
S
{
int
a
;
};
layout
(
binding
=
0
,
std430
)
buffer S_1
{
int
a
;
}
v
;
void
foo
()
{
v
.
a
=
(
v
.
a
/
2
);
}