Changeset 54105 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 6, 2015 6:53:10 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98076
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.h
r54100 r54105 1350 1350 mUsesGuestVram(true) {} 1351 1351 1352 VBoxFBSizeInfo(ulong aPixelFormat, uchar *aVRAM, 1352 VBoxFBSizeInfo(UIVisualStateType visualState, 1353 ulong aPixelFormat, uchar *aVRAM, 1353 1354 ulong aBitsPerPixel, ulong aBytesPerLine, 1354 1355 ulong aWidth, ulong aHeight, 1356 double dScaleFactor, const QSize &scaledSize, bool fUseUnscaledHiDPIOutput, 1355 1357 bool bUsesGuestVram) : 1356 m_visualState( UIVisualStateType_Invalid),1358 m_visualState(visualState), 1357 1359 mPixelFormat(aPixelFormat), mVRAM(aVRAM), mBitsPerPixel(aBitsPerPixel), 1358 1360 mBytesPerLine(aBytesPerLine), mWidth(aWidth), mHeight(aHeight), 1359 m_dScaleFactor( 1.0), m_scaledSize(QSize()), m_fUseUnscaledHiDPIOutput(false),1361 m_dScaleFactor(dScaleFactor), m_scaledSize(scaledSize), m_fUseUnscaledHiDPIOutput(fUseUnscaledHiDPIOutput), 1360 1362 mUsesGuestVram(bUsesGuestVram) {} 1361 1363 … … 1913 1915 } 1914 1916 1917 void performRescale() 1918 { 1919 UIFrameBuffer::performRescale(); 1920 mOverlay.onResizeEventPostprocess(VBoxFBSizeInfo(this), 1921 QPoint(mpView->contentsX(), mpView->contentsY())); 1922 } 1923 1915 1924 void viewportResized (QResizeEvent * re) 1916 1925 {
Note:
See TracChangeset
for help on using the changeset viewer.