Changeset 103574 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video
- Timestamp:
- Feb 26, 2024 4:05:40 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dx/VBoxDX.cpp
r102809 r103574 2950 2950 UINT Flags, FLOAT Depth, UINT8 Stencil) 2951 2951 { 2952 vgpu10ClearDepthStencilView(pDevice, (uint16)Flags, Stencil, pDepthStencilView->uDepthStencilViewId, Depth); 2952 uint16_t svgaFlags = 0; 2953 if (Flags & D3D10_DDI_CLEAR_DEPTH) 2954 svgaFlags |= SVGA3D_CLEAR_DEPTH; 2955 if (Flags & D3D10_DDI_CLEAR_STENCIL) 2956 svgaFlags |= SVGA3D_CLEAR_STENCIL; 2957 vgpu10ClearDepthStencilView(pDevice, svgaFlags, Stencil, pDepthStencilView->uDepthStencilViewId, Depth); 2953 2958 } 2954 2959
Note:
See TracChangeset
for help on using the changeset viewer.