Changeset 53413 in vbox
- Timestamp:
- Nov 28, 2014 3:34:15 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vboxwrappers.py
r52978 r53413 2220 2220 """ 2221 2221 try: 2222 iWidth, iHeight, _, _, _, _ = self.o.console.display.getScreenResolution(iScreenId)2223 2222 if self.fpApiVer >= 4.4: 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 2228 aPngData = self.o.console.display.takeScreenShotPNGToArray(iScreenId, iWidth, iHeight) 2228 2229 except:
Note:
See TracChangeset
for help on using the changeset viewer.

