Changeset 82679 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Jan 8, 2020 7:37:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/gallium/GaDrvEnvWddm.cpp
r82651 r82679 220 220 ddiEscape.hDevice = 0; // pThis->mWddmCallbacks.hDevice; 221 221 ddiEscape.Flags.Value = 0; 222 ddiEscape.Flags.HardwareAccess = 1; // Required, otherwise graphics corruption can happen. No idea why. 223 // Eventually we probably have to create allocations for surfaces, 224 // as a WDDM driver should do. Then the Escape hack will be removed. 222 225 ddiEscape.pPrivateDriverData = pData; 223 226 ddiEscape.PrivateDriverDataSize = cbAlloc; … … 253 256 ddiEscape.hDevice = 0; // pThis->mWddmCallbacks.hDevice; 254 257 ddiEscape.Flags.Value = 0; 255 ddiEscape.Flags.HardwareAccess = 1; /// @todo Remove when the miniport has the ref counting for the host objects 258 ddiEscape.Flags.HardwareAccess = 1; // Required, otherwise graphics corruption can happen. No idea why. 259 // Eventually we probably have to create allocations for surfaces, 260 // as a WDDM driver should do. Then the Escape hack will be removed. 256 261 ddiEscape.pPrivateDriverData = &data; 257 262 ddiEscape.PrivateDriverDataSize = sizeof(data);
Note:
See TracChangeset
for help on using the changeset viewer.