bloat-buster/dependencies/glslang-15.0.0/Test/hlsl.structbuffer.rwbyte2.comp
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

11 lines
132 B
Plaintext

RWStructuredBuffer<uint> g_sbuf;
RWByteAddressBuffer g_bbuf;
void main()
{
uint f = g_bbuf.Load(16);
g_sbuf[0] = f;
}