aboutsummaryrefslogtreecommitdiff
path: root/include/BH/Math/Vec4i.h
diff options
context:
space:
mode:
authorMikhail Romanko <me@blankhex.com>2025-06-21 22:22:04 +0300
committerMikhail Romanko <me@blankhex.com>2025-06-21 22:22:04 +0300
commit6ff689696949aeac13fe7059a30e4fb999c876e0 (patch)
tree1c630782fa5a32d4c8f1fd36ef404efd1ca61004 /include/BH/Math/Vec4i.h
parent6e643403b4ba6232497119e1f0829a7027c36a39 (diff)
downloadbhlib-6ff689696949aeac13fe7059a30e4fb999c876e0.tar.gz
Remove extra newlines
Diffstat (limited to 'include/BH/Math/Vec4i.h')
-rw-r--r--include/BH/Math/Vec4i.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/BH/Math/Vec4i.h b/include/BH/Math/Vec4i.h
index 4cececf..683d0eb 100644
--- a/include/BH/Math/Vec4i.h
+++ b/include/BH/Math/Vec4i.h
@@ -9,43 +9,36 @@ void BH_Vec4iAdd(const int a[4],
int out[4]);
-
void BH_Vec4iSub(const int a[4],
const int b[4],
int out[4]);
-
void BH_Vec4iMul(const int a[4],
const int b[4],
int out[4]);
-
void BH_Vec4iScale(const int a[4],
int b,
int out[4]);
-
void BH_Vec4iMulAdd(const int a[4],
const int b[4],
const int c[4],
int out[4]);
-
void BH_Vec4iNegate(const int in[4],
int out[4]);
-
void BH_Vec4iMin(const int a[4],
const int b[4],
int out[4]);
-
void BH_Vec4iMax(const int a[4],
const int b[4],
int out[4]);