- Timestamp:
- Nov 28, 2014 3:36:50 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r53413 r53415 2221 2221 try: 2222 2222 if self.fpApiVer >= 4.4: 2223 iWidth, iHeight, _, _, _, _ , _= self.o.console.display.getScreenResolution(iScreenId)2223 iWidth, iHeight, _, _, _, _ = self.o.console.display.getScreenResolution(iScreenId) 2224 2224 aPngData = self.o.console.display.takeScreenShotToArray(iScreenId, iWidth, iHeight, 2225 2225 vboxcon.BitmapFormat_PNG) 2226 2226 else: 2227 iWidth, iHeight, _, _, _ , _= self.o.console.display.getScreenResolution(iScreenId)2227 iWidth, iHeight, _, _, _ = self.o.console.display.getScreenResolution(iScreenId) 2228 2228 aPngData = self.o.console.display.takeScreenShotPNGToArray(iScreenId, iWidth, iHeight) 2229 2229 except:
Note:
See TracChangeset
for help on using the changeset viewer.