45 lines
852 B
C
45 lines
852 B
C
#ifndef _TEST_VECTOR2_ARITHMETICS_H_
|
|
#define _TEST_VECTOR2_ARITHMETICS_H_
|
|
|
|
// ==================== Add ===================== //
|
|
|
|
void test_vector2_add_fp32();
|
|
|
|
void test_vector2_add_scaled_fp32();
|
|
|
|
void test_vector2_add_fp64();
|
|
|
|
void test_vector2_add_scaled_fp64();
|
|
|
|
void test_vector2_add();
|
|
|
|
// ================== Subtract ================== //
|
|
|
|
void test_vector2_subtract_fp32();
|
|
|
|
void test_vector2_subtract_scaled_fp32();
|
|
|
|
void test_vector2_subtract_fp64();
|
|
|
|
void test_vector2_subtract_scaled_fp64();
|
|
|
|
void test_vector2_subtract();
|
|
|
|
// ================== Multiply ================== //
|
|
|
|
void test_vector2_multiply_fp32();
|
|
|
|
void test_vector2_multiply_fp64();
|
|
|
|
void test_vector2_multiply();
|
|
|
|
// =================== Divide =================== //
|
|
|
|
void test_vector2_divide_fp32();
|
|
|
|
void test_vector2_divide_fp64();
|
|
|
|
void test_vector2_divide();
|
|
|
|
#endif
|
|
|