16 lines
349 B
Plaintext
16 lines
349 B
Plaintext
RWByteAddressBuffer WriteOnly : register(u2);
|
|
ByteAddressBuffer ReadOnly : register(t0);
|
|
RWByteAddressBuffer ReadWrite : register(u1);
|
|
|
|
void comp_main()
|
|
{
|
|
WriteOnly.Store4(0, asuint(asfloat(ReadOnly.Load4(0))));
|
|
ReadWrite.Store4(0, asuint(asfloat(ReadWrite.Load4(0)) + 10.0f.xxxx));
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|