Changeset 95739 in vbox
- Timestamp:
- Jul 20, 2022 6:58:00 AM (2 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r95603 r95739 3402 3402 { 3403 3403 LogFunc(("Can't allocate buffer for context id %#x\n", CBCtx)); 3404 A SSERT_GUEST_FAILED();3404 AssertFailed(); 3405 3405 CBstatus = SVGA_CB_STATUS_QUEUE_FULL; 3406 3406 } -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win-dx.cpp
r95588 r95739 6024 6024 PVMSVGA3DSURFACE pSurface; 6025 6025 rc = vmsvga3dSurfaceFromSid(pThisCC->svga.p3dState, sid, &pSurface); 6026 AssertRCReturnVoid(rc); 6026 if (RT_FAILURE(rc)) 6027 { 6028 AssertMsgFailed(("sid = %u, rc = %Rrc\n", sid, rc)); 6029 continue; 6030 } 6027 6031 6028 6032 /* The guest might have invalidated the surface in which case pSurface->pBackendSurface is NULL. */
Note:
See TracChangeset
for help on using the changeset viewer.