Changeset 98056 in vbox
- Timestamp:
- Jan 11, 2023 12:36:11 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155170
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/gallium/Svga.cpp
r98043 r98056 755 755 756 756 /* The surface must not be redirected yet. */ 757 AssertReturn (SVGAHOSTOBJECTID(&pSO->ho) == pSO->u32SharedSid, STATUS_INVALID_PARAMETER);757 AssertReturnStmt(SVGAHOSTOBJECTID(&pSO->ho) == pSO->u32SharedSid, SvgaSurfaceObjectRelease(pSO), STATUS_INVALID_PARAMETER); 758 758 759 759 /* The surface object to be mapped to. Query it to reference it. … … 780 780 781 781 /* The surface must be redirected. */ 782 AssertReturn (SVGAHOSTOBJECTID(&pSO->ho) != pSO->u32SharedSid, STATUS_INVALID_PARAMETER);782 AssertReturnStmt(SVGAHOSTOBJECTID(&pSO->ho) != pSO->u32SharedSid, SvgaSurfaceObjectRelease(pSO), STATUS_INVALID_PARAMETER); 783 783 784 784 /* The shared surface object, which the u32Sid was mapped to.
Note:
See TracChangeset
for help on using the changeset viewer.