Update Storage.h

Remove unnecessary code.
This commit is contained in:
Thorben Höhne 2024-05-24 23:47:39 +02:00 committed by GitHub
parent 8b3d61ff5d
commit aa4c64dc94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -143,37 +143,3 @@ namespace Phanes::Core::SIMD
typedef Phanes::Core::Types::Vec4x2u32Reg type;
};
}
struct Vec4
{
public:
union
{
struct
{
int x, y, z, w;
};
typename Phanes::Core::SIMD::Storage<4, Phanes::Core::Types::int32, true>::type comp;
};
};
struct Vec4x2
{
public:
union
{
struct
{
Vec4 v1;
Vec4 v2;
};
typename Phanes::Core::SIMD::Storage<8, Phanes::Core::Types::int32, true>::type comp;
};
};