From aa4c64dc945e7482d79d5b3e61d4f861b9371bde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20H=C3=B6hne?= <77296181+scorpioblood@users.noreply.github.com> Date: Fri, 24 May 2024 23:47:39 +0200 Subject: [PATCH] Update Storage.h Remove unnecessary code. --- .../Runtime/Core/public/Math/SIMD/Storage.h | 34 ------------------- 1 file changed, 34 deletions(-) diff --git a/Engine/Source/Runtime/Core/public/Math/SIMD/Storage.h b/Engine/Source/Runtime/Core/public/Math/SIMD/Storage.h index fa2b854..a298c1c 100644 --- a/Engine/Source/Runtime/Core/public/Math/SIMD/Storage.h +++ b/Engine/Source/Runtime/Core/public/Math/SIMD/Storage.h @@ -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; - }; -}; \ No newline at end of file