mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-14 13:51:04 +00:00
11 lines
132 B
Plaintext
11 lines
132 B
Plaintext
|
RWStructuredBuffer<uint> g_sbuf;
|
||
|
RWByteAddressBuffer g_bbuf;
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
uint f = g_bbuf.Load(16);
|
||
|
g_sbuf[0] = f;
|
||
|
}
|
||
|
|