1.1 --- a/TestsTab.qml Fri May 30 15:02:15 2014 +0200
1.2 +++ b/TestsTab.qml Sun Jun 01 21:15:33 2014 +0200
1.3 @@ -131,7 +131,7 @@
1.4
1.5 if (checkBoxRenderToDisplay.checked)
1.6 {
1.7 - if (checkBoxFillOnly.checked)
1.8 + if (checkBoxFillAndClearOnly.checked)
1.9 {
1.10 //Trying to make it a worse case scenario for our frame diff algo
1.11 if (doFill)
1.12 @@ -218,7 +218,7 @@
1.13 }
1.14
1.15 CheckBox {
1.16 - id: checkBoxFillOnly
1.17 + id: checkBoxFillAndClearOnly
1.18 text: qsTr("Only fill and clear")
1.19 checked: false
1.20 }
1.21 @@ -236,10 +236,16 @@
1.22 }
1.23
1.24 CheckBox {
1.25 - //id: checkBoxOnePixelOnly
1.26 text: qsTr("Off-Screen")
1.27 checked: true
1.28 onCheckedChanged: {display.offScreenMode = checked;}
1.29 }
1.30 +
1.31 + CheckBox {
1.32 + text: qsTr("Frame differencing")
1.33 + checked: true
1.34 + onCheckedChanged: {display.frameDifferencing = checked;}
1.35 + }
1.36 +
1.37 }
1.38 }