mirror of
https://github.com/libretro/RetroArch
synced 2025-02-19 12:41:00 +00:00
23 lines
285 B
Plaintext
23 lines
285 B
Plaintext
struct Foo
|
|
{
|
|
float _abs;
|
|
};
|
|
|
|
RWByteAddressBuffer _7 : register(u0);
|
|
|
|
void comp_main()
|
|
{
|
|
Foo _24;
|
|
_24._abs = asfloat(_7.Load(0));
|
|
Foo f;
|
|
f._abs = _24._abs;
|
|
int _abs = 10;
|
|
_7.Store(4, asuint(f._abs));
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|