Changeset 53849 in vbox
- Timestamp:
- Jan 16, 2015 9:34:59 AM (10 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
-
include/DisplayImpl.h (modified) (1 diff)
-
src-client/DisplayImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DisplayImpl.h
r53847 r53849 170 170 void i_handleCrVRecScreenshotEnd(uint32_t uScreen, uint64_t u64TimeStamp); 171 171 void i_handleVRecCompletion(); 172 HRESULT notifyScaleFactorChange( uint32_t uScreen, uint32_t u32ScaleFactorWMultiplied, uint32_tu32ScaleFactorHMultiplied);172 HRESULT notifyScaleFactorChange(ULONG uScreen, ULONG u32ScaleFactorWMultiplied, ULONG u32ScaleFactorHMultiplied); 173 173 #endif 174 174 -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r53847 r53849 3400 3400 } 3401 3401 3402 HRESULT Display::notifyScaleFactorChange( uint32_t uScreen, uint32_t u32ScaleFactorWMultiplied, uint32_tu32ScaleFactorHMultiplied)3402 HRESULT Display::notifyScaleFactorChange(ULONG uScreen, ULONG u32ScaleFactorWMultiplied, ULONG u32ScaleFactorHMultiplied) 3403 3403 { 3404 3404 #if defined(VBOX_WITH_HGCM) && defined(VBOX_WITH_CROGL) … … 3424 3424 int rc; 3425 3425 3426 pData->u32Screen = uScreen;3427 pData->u32ScaleFactorWMultiplied = u32ScaleFactorWMultiplied;3428 pData->u32ScaleFactorHMultiplied = u32ScaleFactorHMultiplied;3426 pData->u32Screen = (uint32_t)uScreen; 3427 pData->u32ScaleFactorWMultiplied = (uint32_t)u32ScaleFactorWMultiplied; 3428 pData->u32ScaleFactorHMultiplied = (uint32_t)u32ScaleFactorHMultiplied; 3429 3429 3430 3430 pCtl->Hdr.enmType = VBOXCRCMDCTL_TYPE_HGCM;
Note:
See TracChangeset
for help on using the changeset viewer.

