From: Joshua Simmons Date: Thu, 6 Oct 2022 21:28:20 +0000 (+0200) Subject: Remove useless commented code X-Git-Url: https://git.nega.tv//gitweb.cgi?a=commitdiff_plain;h=1219917ecdc6b71f1e1461b1c085027241fb2cad;p=josh%2Fnarcissus Remove useless commented code --- diff --git a/narcissus-maths/src/vec4.rs b/narcissus-maths/src/vec4.rs index 6f678fa..a72d4e5 100644 --- a/narcissus-maths/src/vec4.rs +++ b/narcissus-maths/src/vec4.rs @@ -78,21 +78,6 @@ impl From for std::arch::x86_64::__m128 { } } -// -// #[inline(always)] -// pub(crate) fn as_m128(self) -> std::arch::x86_64::__m128 { -// -// } - -// #[cfg(target_feature = "sse2")] -// #[inline(always)] -// pub(crate) fn from_m128(values: std::arch::x86_64::__m128) -> Self { -// use std::arch::x86_64::_mm_storeu_ps; -// let mut result = Vec4::ZERO; -// unsafe { _mm_storeu_ps(&mut result.x, values) } -// result -// } - impl std::ops::Add for Vec4 { type Output = Vec4;