qgraphicsview benchmark fix

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-07-06 13:42:18 +00:00
parent 7884550ebc
commit bf724d347a

View file

@ -448,14 +448,10 @@ void tst_QGraphicsView::deepNesting_data()
QTest::addColumn<bool>("rotate");
QTest::addColumn<bool>("bsp");
QTest::newRow("bsp, no transform") << false << false << true;
QTest::newRow("bsp, rotation") << true << false << true;
QTest::newRow("bsp, no transform, sort cache") << false << true << true;
QTest::newRow("bsp, rotation, sort cache") << true << true << true;
QTest::newRow("no transform") << false << false << false;
QTest::newRow("rotation") << true << false << false;
QTest::newRow("no transform, sort cache") << false << true << false;
QTest::newRow("rotation, sort cache") << true << true << false;
QTest::newRow("bsp, no transform") << false << true;
QTest::newRow("bsp, rotation") << true << true;
QTest::newRow("no transform") << false << false;
QTest::newRow("rotation") << true << false;
}
void tst_QGraphicsView::deepNesting()