tests: Fix evas 3d tests after previous commit
authorJean-Philippe Andre <jp.andre@samsung.com>
Wed, 17 Feb 2016 05:49:23 +0000 (14:49 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Wed, 17 Feb 2016 07:12:35 +0000 (16:12 +0900)
src/tests/evas/evas_test_matrix.c

index b6df8f2..95e320f 100644 (file)
 
 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) ||