Переход на версию 0.3: изменение подхода к именованию сущностей, добавление, изменение и удаление ряда функций
This commit is contained in:
parent
d33daf4e2d
commit
f7e41645fe
87 changed files with 4580 additions and 4051 deletions
|
|
@ -4,11 +4,11 @@
|
|||
|
||||
void test_vector3_reset_fp32()
|
||||
{
|
||||
BgcVector3FP32 vector;
|
||||
BGC_FP32_Vector3 vector;
|
||||
|
||||
print_testing_name("bgc_vector3_reset_fp32");
|
||||
print_testing_name("bgc_fp32_vector3_reset");
|
||||
|
||||
bgc_vector3_reset_fp32(&vector);
|
||||
bgc_fp32_vector3_reset(&vector);
|
||||
|
||||
if (vector.x1 != 0.0f || vector.x2 != 0.0f || vector.x3 != 0.0f) {
|
||||
print_testing_failed();
|
||||
|
|
@ -20,11 +20,11 @@ void test_vector3_reset_fp32()
|
|||
|
||||
void test_vector3_reset_fp64()
|
||||
{
|
||||
BgcVector3FP64 vector;
|
||||
BGC_FP64_Vector3 vector;
|
||||
|
||||
print_testing_name("bgc_vector3_reset_fp64");
|
||||
print_testing_name("bgc_fp64_vector3_reset");
|
||||
|
||||
bgc_vector3_reset_fp64(&vector);
|
||||
bgc_fp64_vector3_reset(&vector);
|
||||
|
||||
if (vector.x1 != 0.0 || vector.x2 != 0.0 || vector.x3 != 0.0) {
|
||||
print_testing_failed();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue