diff -r ca9e48af31e6 -r 1f607fa8542f TestsTab.qml --- a/TestsTab.qml Fri May 30 15:02:15 2014 +0200 +++ b/TestsTab.qml Sun Jun 01 21:15:33 2014 +0200 @@ -131,7 +131,7 @@ if (checkBoxRenderToDisplay.checked) { - if (checkBoxFillOnly.checked) + if (checkBoxFillAndClearOnly.checked) { //Trying to make it a worse case scenario for our frame diff algo if (doFill) @@ -218,7 +218,7 @@ } CheckBox { - id: checkBoxFillOnly + id: checkBoxFillAndClearOnly text: qsTr("Only fill and clear") checked: false } @@ -236,10 +236,16 @@ } CheckBox { - //id: checkBoxOnePixelOnly text: qsTr("Off-Screen") checked: true onCheckedChanged: {display.offScreenMode = checked;} } + + CheckBox { + text: qsTr("Frame differencing") + checked: true + onCheckedChanged: {display.frameDifferencing = checked;} + } + } }