tests: Fix evas 3d tests after previous commit

This commit is contained in:
Jean-Philippe Andre 2016-02-17 14:49:23 +09:00
parent 780ec5d029
commit f649dac12f
1 changed files with 4 additions and 4 deletions

View File

@ -16,14 +16,14 @@
START_TEST(evas_matrix)
{
Evas_Vec3 position;
Eina_Vector3 position;
Eina_Quaternion orientation;
Evas_Vec3 scale;
Eina_Vector3 scale;
Eina_Matrix4 mat;
evas_vec3_set(&position, 5.0, 3.0, 2.0);
eina_vector3_set(&position, 5.0, 3.0, 2.0);
eina_quaternion_set(&orientation, 30.0, 1.0, 0.0, 0.0);
evas_vec3_set(&scale, 1.0, 2.0, 1.0);
eina_vector3_set(&scale, 1.0, 2.0, 1.0);
evas_mat4_build(&mat, &position, &orientation, &scale);
fail_if((mat.xx != -1) || (mat.xy != 60) ||