Changeset 46851 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jun 27, 2013 4:55:20 PM (12 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
r44529 r46851 62 62 if(major == 6) 63 63 { 64 if (minor == 2) 64 if (minor == 3) 65 s_WinVersion = WIN8_1; 66 else if (minor == 2) 65 67 s_WinVersion = WIN8; 66 68 else if (minor == 1) -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPUtils.h
r44529 r46851 94 94 WINVISTA = 4, 95 95 WIN7 = 5, 96 WIN8 = 6 96 WIN8 = 6, 97 WIN8_1 = 7 97 98 } vboxWinVersion_t; 98 99 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/common/VBoxMPVidModes.cpp
r45037 r46851 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|| resolutionMatrix[resIndex].xRes != 1024 || resolutionMatrix[resIndex].yRes != 768) &&359 ((VBoxQueryWinVersion() != WIN8 && VBoxQueryWinVersion() != WIN8_1) || resolutionMatrix[resIndex].xRes != 1024 || resolutionMatrix[resIndex].yRes != 768) && 360 360 #endif 361 361 !VBoxLikesVideoMode(iDisplay, resolutionMatrix[resIndex].xRes, resolutionMatrix[resIndex].yRes - yOffset, bitsPerPixel)) -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPMisc.cpp
r46757 r46851 619 619 else 620 620 { 621 Assert(ver == WIN7 || ver == WIN8 );621 Assert(ver == WIN7 || ver == WIN8 || ver == WIN8_1); 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.