Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang.git
/
HEAD
/
.
/
Test
/
hlsl.buffer.store3.error.frag
blob: b1c80121f551cbb23386f29205a6d2408c3a503d [
file
]
struct
S
{
float4 a
;
};
RWByteAddressBuffer
buf
;
float4 main
()
:
SV_TARGET
{
S s
;
buf
.
Store3
(
s
,
uint3
(
42
,
43
,
44
));
return
float4
(
0
);
}