blob: ac424da6e03bd047b26f2264e9d07bee3c6e7e1a [file]
struct S {
float4 a;
};
RWByteAddressBuffer buf;
float4 main() : SV_TARGET
{
S s;
uint2 v = buf.Load2(s);
return float4(v, 0, 0);
}