Changeset 86197 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Sep 21, 2020 1:42:43 PM (4 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r86195 r86197 7806 7806 7807 7807 /* VGPU10 capabilities. */ 7808 // pThis->svga.u32DeviceCaps |= SVGA_CAP_COMMAND_BUFFERS /* Enable register based command buffer submission. */ 7809 // | SVGA_CAP_CMD_BUFFERS_2 /* Support for SVGA_REG_CMD_PREPEND_LOW/HIGH */ 7810 // | SVGA_CAP_GBOBJECTS /* Enable guest-backed objects and surfaces. */ 7811 // | SVGA_CAP_CMD_BUFFERS_3 /* AKA SVGA_CAP_DX. Enable support for DX commands, and command buffers in a mob. */ 7812 // ; 7808 if (pThis->fVMSVGA10) 7809 { 7810 pThis->svga.u32DeviceCaps |= SVGA_CAP_COMMAND_BUFFERS /* Enable register based command buffer submission. */ 7811 // | SVGA_CAP_CMD_BUFFERS_2 /* Support for SVGA_REG_CMD_PREPEND_LOW/HIGH */ 7812 // | SVGA_CAP_GBOBJECTS /* Enable guest-backed objects and surfaces. */ 7813 // | SVGA_CAP_CMD_BUFFERS_3 /* AKA SVGA_CAP_DX. Enable support for DX commands, and command buffers in a mob. */ 7814 ; 7815 } 7813 7816 7814 7817 # ifdef VBOX_WITH_VMSVGA3D -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r85864 r86197 6386 6386 # ifdef VBOX_WITH_VMSVGA 6387 6387 "|VMSVGAEnabled" 6388 "|VMSVGA10" 6388 6389 "|VMSVGAPciId" 6389 6390 "|VMSVGAPciBarLayout" … … 6427 6428 AssertLogRelRCReturn(rc, rc); 6428 6429 Log(("VMSVGA: VMSVGAEnabled = %d\n", pThis->fVMSVGAEnabled)); 6430 6431 rc = pHlp->pfnCFGMQueryBoolDef(pCfg, "VMSVGA10", &pThis->fVMSVGA10, false); 6432 AssertLogRelRCReturn(rc, rc); 6433 Log(("VMSVGA: VMSVGA10 = %d\n", pThis->fVMSVGA10)); 6429 6434 6430 6435 rc = pHlp->pfnCFGMQueryBoolDef(pCfg, "VMSVGAPciId", &pThis->fVMSVGAPciId, false); -
trunk/src/VBox/Devices/Graphics/DevVGA.h
r82968 r86197 367 367 /* Whether the SVGA emulation is enabled or not. */ 368 368 bool fVMSVGAEnabled; 369 bool fVMSVGA10; 369 370 bool fVMSVGAPciId; 370 371 bool fVMSVGAPciBarLayout; 371 bool Padding4[ 3];372 bool Padding4[2]; 372 373 #else 373 bool Padding4[ 3+3];374 bool Padding4[4+2]; 374 375 #endif 375 376
Note:
See TracChangeset
for help on using the changeset viewer.