Changeset 48145 in vbox
- Timestamp:
- Aug 29, 2013 11:05:46 AM (11 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r48070 r48145 3854 3854 } 3855 3855 3856 #if 0 3857 /* win8.1 does not allow context-based hw-access escapes for some reason */ 3856 3858 PVBOXWDDM_CONTEXT pContext = (PVBOXWDDM_CONTEXT)pEscape->hContext; 3857 3859 if (!pContext) … … 3868 3870 break; 3869 3871 } 3872 #endif 3870 3873 3871 3874 WARN(("VBOXESC_REINITVIDEOMODESBYMASK should be called instead")); … … 3883 3886 } 3884 3887 3888 #if 0 3889 /* win8.1 does not allow context-based hw-access escapes for some reason */ 3885 3890 PVBOXWDDM_CONTEXT pContext = (PVBOXWDDM_CONTEXT)pEscape->hContext; 3886 3891 if (!pContext) … … 3897 3902 break; 3898 3903 } 3904 #endif 3899 3905 3900 3906 if (pEscape->PrivateDriverDataSize != sizeof (VBOXDISPIFESCAPE_REINITVIDEOMODESBYMASK)) … … 3922 3928 } 3923 3929 3930 #if 0 3931 /* win8.1 does not allow context-based hw-access escapes for some reason */ 3924 3932 PVBOXWDDM_CONTEXT pContext = (PVBOXWDDM_CONTEXT)pEscape->hContext; 3925 3933 if (!pContext) … … 3936 3944 break; 3937 3945 } 3946 #endif 3938 3947 3939 3948 if (pEscape->PrivateDriverDataSize != sizeof (*pEscapeHdr)) -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r48070 r48145 1304 1304 D3DKMT_ESCAPE EscapeData = {0}; 1305 1305 EscapeData.hAdapter = pOp->Adapter.hAdapter; 1306 #if 0 1307 /* win8.1 does not allow context-based hw-access escapes for some reason */ 1306 1308 EscapeData.hDevice = pOp->Device.hDevice; 1307 1309 EscapeData.hContext = pOp->Context.hContext; 1310 #endif 1308 1311 EscapeData.Type = D3DKMT_ESCAPE_DRIVERPRIVATE; 1309 1312 EscapeData.Flags.HardwareAccess = 1; … … 1692 1695 D3DKMT_ESCAPE EscapeData = {0}; 1693 1696 EscapeData.hAdapter = pOp->Adapter.hAdapter; 1697 #if 0 1698 /* win8.1 does not allow context-based hw-access escapes for some reason */ 1694 1699 EscapeData.hDevice = pOp->Device.hDevice; 1695 1700 EscapeData.hContext = pOp->Context.hContext; 1701 #endif 1696 1702 EscapeData.Type = D3DKMT_ESCAPE_DRIVERPRIVATE; 1697 1703 EscapeData.Flags.HardwareAccess = 1;
Note:
See TracChangeset
for help on using the changeset viewer.