diff --git a/geometry/tree4d.hpp b/geometry/tree4d.hpp index 079d2e45d3..858f4d0445 100644 --- a/geometry/tree4d.hpp +++ b/geometry/tree4d.hpp @@ -38,7 +38,7 @@ namespace m4 }; typedef KDTree::KDTree<4, value_t> tree_t; - typedef typename tree_t::dim_region_type<2>::type region_t; + typedef typename tree_t::template dim_region_type<2>::type region_t; tree_t m_tree; typedef vector store_vec_t; diff --git a/qt_tstfrm/main_tester.cpp b/qt_tstfrm/main_tester.cpp index 80bde2a7ff..b8d40fe73f 100644 --- a/qt_tstfrm/main_tester.cpp +++ b/qt_tstfrm/main_tester.cpp @@ -37,6 +37,7 @@ int BaseTester::Run(char const * name, function const & fn) QApplication app(argc, argv); MainWindow wnd(fn()); + wnd.setWindowTitle(name); wnd.show(); return app.exec(); diff --git a/yg/yg_tests/screengl_test.cpp b/yg/yg_tests/screengl_test.cpp index 88c79575ce..5287bb5414 100644 --- a/yg/yg_tests/screengl_test.cpp +++ b/yg/yg_tests/screengl_test.cpp @@ -412,7 +412,7 @@ namespace } }; - struct TestDrawFont + struct TestDrawText { void DoDraw(shared_ptr p) { @@ -492,13 +492,13 @@ namespace return ret; } - struct TestDrawFontOnPath + struct TestDrawTextOnPath { std::vector m_path; std::string m_text; yg::PenInfo m_penInfo; - TestDrawFontOnPath() + TestDrawTextOnPath() { m_path.push_back(m2::PointD(40, 200)); m_path.push_back(m2::PointD(100, 100)); @@ -517,7 +517,7 @@ namespace } }; - struct TestDrawFontOnPathWithOffset : TestDrawFontOnPath + struct TestDrawTextOnPathWithOffset : TestDrawTextOnPath { void DoDraw(shared_ptr p) { @@ -529,7 +529,7 @@ namespace } }; - struct TestDrawFontOverflow + struct TestDrawTextOverflow { void DoDraw(shared_ptr p) { @@ -545,7 +545,7 @@ namespace } }; - struct TestDrawFontFiltering + struct TestDrawTextFiltering { void DoDraw(shared_ptr p) { @@ -562,6 +562,27 @@ namespace } }; + struct TestDrawRandomTextFiltering + { + void DoDraw(shared_ptr p) + { + char * texts [] = {"Simplicity is the ultimate sophistication", "Leonardo Da Vinci"}; + + int startSize = 20; + int endSize = 40; + + int textsCount = 200; + + for (int i = 0; i < textsCount; ++i) + p->drawText( + m2::PointD(rand() % 500, rand() % 500), + 0, + rand() % (endSize - startSize) + startSize, + texts[rand() % (sizeof(texts) / sizeof(char*))], + rand() % 10); + } + }; + struct TestDrawUtilsRect { void DoDraw(shared_ptr p) @@ -730,26 +751,27 @@ namespace } }; -// UNIT_TEST_GL(TestDrawPolyOverflow); -// UNIT_TEST_GL(TestDrawFont); -// UNIT_TEST_GL(TestDrawSingleSymbol); -// UNIT_TEST_GL(TestDrawEmptySymbol); -// UNIT_TEST_GL(TestDrawSingleSymbolAndSolidPath); -// UNIT_TEST_GL(TestDrawString); -// UNIT_TEST_GL(TestDrawStringOnString); -// UNIT_TEST_GL(TestDrawFontOnPath); -// UNIT_TEST_GL(TestDrawFontOnPathWithOffset); -// UNIT_TEST_GL(TestDrawFontOverflow); - UNIT_TEST_GL(TestDrawFontFiltering); -// UNIT_TEST_GL(TestDrawSGIConvex); -// UNIT_TEST_GL(TestDrawPoly); -// UNIT_TEST_GL(TestDrawSolidRect); -// UNIT_TEST_GL(TestDrawPathWithSkinPageMiss); -// UNIT_TEST_GL(TestDrawPathWithOffset); -// UNIT_TEST_GL(TestDrawPathJoin); -// UNIT_TEST_GL(TestDrawPathSolid); -// UNIT_TEST_GL(TestDrawPathSolidWithZ); -// UNIT_TEST_GL(TestDrawPathSolidWithClipRect); -// UNIT_TEST_GL(TestDrawUtilsRect); -// UNIT_TEST_GL(TestDrawUtilsRectFilledTexture); + UNIT_TEST_GL(TestDrawPolyOverflow); + UNIT_TEST_GL(TestDrawText); + UNIT_TEST_GL(TestDrawSingleSymbol); + UNIT_TEST_GL(TestDrawEmptySymbol); + UNIT_TEST_GL(TestDrawSingleSymbolAndSolidPath); + UNIT_TEST_GL(TestDrawString); + UNIT_TEST_GL(TestDrawStringOnString); + UNIT_TEST_GL(TestDrawTextOnPath); + UNIT_TEST_GL(TestDrawTextOnPathWithOffset); + UNIT_TEST_GL(TestDrawTextOverflow); + UNIT_TEST_GL(TestDrawTextFiltering); + UNIT_TEST_GL(TestDrawRandomTextFiltering); + UNIT_TEST_GL(TestDrawSGIConvex); + UNIT_TEST_GL(TestDrawPoly); + UNIT_TEST_GL(TestDrawSolidRect); + UNIT_TEST_GL(TestDrawPathWithSkinPageMiss); + UNIT_TEST_GL(TestDrawPathWithOffset); + UNIT_TEST_GL(TestDrawPathJoin); + UNIT_TEST_GL(TestDrawPathSolid); + UNIT_TEST_GL(TestDrawPathSolidWithZ); + UNIT_TEST_GL(TestDrawPathSolidWithClipRect); + UNIT_TEST_GL(TestDrawUtilsRect); + UNIT_TEST_GL(TestDrawUtilsRectFilledTexture); }