From fca7ff73622fcba4e721254ada6676b176eb4cc3 Mon Sep 17 00:00:00 2001 From: ohyzha Date: Fri, 27 Sep 2024 18:44:10 +0300 Subject: [PATCH] fix linux build issues --- openVulkanoCpp/Math/RGB565.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openVulkanoCpp/Math/RGB565.hpp b/openVulkanoCpp/Math/RGB565.hpp index a30a476..357ebfa 100644 --- a/openVulkanoCpp/Math/RGB565.hpp +++ b/openVulkanoCpp/Math/RGB565.hpp @@ -214,7 +214,7 @@ namespace OpenVulkano::Math template || std::is_signed_v, bool> = true> RGB565& operator+=(const Vector3_SIMD& color) { - Set(Get3SIMD() + color); + Set(GetSIMD() + color); return *this; } @@ -256,7 +256,7 @@ namespace OpenVulkano::Math template || std::is_signed_v, bool> = true> RGB565& operator-=(const Vector3_SIMD& color) { - Set(Get3SIMD() - color); + Set(GetSIMD() - color); return *this; } @@ -289,7 +289,7 @@ namespace OpenVulkano::Math template || std::is_signed_v, bool> = true> operator Math::Vector3() { return Get3(); } template || std::is_signed_v, bool> = true> - operator Math::Vector3_SIMD() { return Get3SIMD(); } + operator Math::Vector3_SIMD() { return GetSIMD(); } template, bool> = true> operator Math::Vector4() { return Get4Normalized(); } template, bool> = true>