blob: 6385e0824ee4d57a825d6df55d4877a557a3d380 [file]
struct S {
float4 a;
};
RWByteAddressBuffer buf;
float4 main() : SV_TARGET
{
S s;
buf.Store2(s, uint2(42, 43));
return float4(0);
}