From 1219917ecdc6b71f1e1461b1c085027241fb2cad Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Thu, 6 Oct 2022 23:28:20 +0200 Subject: [PATCH] Remove useless commented code --- narcissus-maths/src/vec4.rs | 15 --------------- 1 file changed, 15 deletions(-) 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; -- 2.49.0