SPIRV-Cross/reference/shaders-hlsl-no-opt/asm/comp/glsl.std450.frexp-modf-struct.fxconly.asm.comp
Hans-Kristian Arntzen c7eda1bce9 Test glsl.std450 more exhaustively.
Make sure to test everything with scalar as well to catch any weird edge
cases.

Not all opcodes are covered here, just the arithmetic ones. FP64 packing
is also ignored.
2019-07-17 11:53:05 +02:00

32 lines
440 B
Plaintext

struct _8
{
float _m0;
float _m1;
};
struct _15
{
float _m0;
int _m1;
};
RWByteAddressBuffer _4 : register(u0);
void comp_main()
{
_8 _23;
_23._m0 = modf(20.0f, _23._m1);
_15 _24;
_24._m0 = frexp(40.0f, _24._m1);
_4.Store(0, asuint(_23._m0));
_4.Store(0, asuint(_23._m1));
_4.Store(0, asuint(_24._m0));
_4.Store(4, uint(_24._m1));
}
[numthreads(1, 1, 1)]
void main()
{
comp_main();
}