aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/geo_transformations.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/geo_transformations.cpp')
-rw-r--r--test/geo_transformations.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/geo_transformations.cpp b/test/geo_transformations.cpp
index 44ce1f501..67396498d 100644
--- a/test/geo_transformations.cpp
+++ b/test/geo_transformations.cpp
@@ -459,11 +459,14 @@ void test_geo_transformations()
CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() ));
CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() ));
CALL_SUBTEST_3(( transform_alignment<double>() ));
+
+ CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_4(( non_projective_only<float,Affine,RowMajor>() ));
+
+ CALL_SUBTEST_5(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_5(( non_projective_only<double,AffineCompact,RowMajor>() ));
- CALL_SUBTEST_4(( transformations<double,Affine,RowMajor|AutoAlign>() ));
- CALL_SUBTEST_4(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
-
- CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|AutoAlign>() ));
- CALL_SUBTEST_5(( transformations<double,Projective,RowMajor|DontAlign>() ));
+ CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|AutoAlign>() ));
+ CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|DontAlign>() ));
}
}