1RWStructuredBuffer<uint> g_sbuf;
2RWByteAddressBuffer g_bbuf;
3
4
5void main()
6{
7    uint f = g_bbuf.Load(16);
8    g_sbuf[0] = f;
9}
10
11