Changeset 46876 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video/mp
- Timestamp:
- Jul 1, 2013 10:09:35 AM (11 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/mp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPUtils.cpp
r46851 r46876 63 63 { 64 64 if (minor == 3) 65 s_WinVersion = WIN8 _1;65 s_WinVersion = WIN81; 66 66 else if (minor == 2) 67 67 s_WinVersion = WIN8; -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPUtils.h
r46851 r46876 95 95 WIN7 = 5, 96 96 WIN8 = 6, 97 WIN8 _1= 797 WIN81 = 7 98 98 } vboxWinVersion_t; 99 99 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPVidModes.cpp
r46851 r46876 357 357 * if the framebuffer window requires scrolling to fit the guest resolution. 358 358 * So add 1024x768 resolution for win8 guest to allow user switch to it */ 359 ((VBoxQueryWinVersion() != WIN8 && VBoxQueryWinVersion() != WIN8_1) || resolutionMatrix[resIndex].xRes != 1024 || resolutionMatrix[resIndex].yRes != 768) && 360 #endif 361 !VBoxLikesVideoMode(iDisplay, resolutionMatrix[resIndex].xRes, resolutionMatrix[resIndex].yRes - yOffset, bitsPerPixel)) 359 ( (VBoxQueryWinVersion() != WIN8 && VBoxQueryWinVersion() != WIN81) 360 || resolutionMatrix[resIndex].xRes != 1024 361 || resolutionMatrix[resIndex].yRes != 768) 362 && 363 #endif 364 !VBoxLikesVideoMode(iDisplay, resolutionMatrix[resIndex].xRes, 365 resolutionMatrix[resIndex].yRes - yOffset, bitsPerPixel)) 362 366 { 363 367 /* host doesn't like this mode */ -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPMisc.cpp
r46851 r46876 619 619 else 620 620 { 621 Assert(ver == WIN7 || ver == WIN8 || ver == WIN8 _1);621 Assert(ver == WIN7 || ver == WIN8 || ver == WIN81); 622 622 pKeyPrefix = VBOXWDDM_REG_DISPLAYSETTINGSKEY_PREFIX_WIN7; 623 623 cbKeyPrefix = sizeof (VBOXWDDM_REG_DISPLAYSETTINGSKEY_PREFIX_WIN7);
Note:
See TracChangeset
for help on using the changeset viewer.