blob: d63c2f76413fe732bc8be509acd6e3ae67300154 [file]
struct S {
float4 a;
};
RWByteAddressBuffer buf;
float4 main() : SV_TARGET
{
S s;
buf.InterlockedAdd(s, 42);
return float4(0);
}