Changeset 82609 in vbox
- Timestamp:
- Dec 17, 2019 5:07:20 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135496
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-ogl.cpp
r82586 r82609 6810 6810 if (pContext->state.aRenderTargets[SVGA3D_RT_COLOR0] != SVGA3D_INVALID_ID) 6811 6811 { 6812 vmsvga3dUpdateHeapBuffersForSurfaces(pThis , pContext->state.aRenderTargets[SVGA3D_RT_COLOR0]);6812 vmsvga3dUpdateHeapBuffersForSurfaces(pThisCC, pContext->state.aRenderTargets[SVGA3D_RT_COLOR0]); 6813 6813 PVMSVGA3DSURFACE pSurface; 6814 6814 int rc2 = vmsvga3dSurfaceFromSid(pState, pContext->state.aRenderTargets[SVGA3D_RT_COLOR0], &pSurface); … … 6819 6819 if (pContext->aSidActiveTextures[0] != SVGA3D_INVALID_ID) 6820 6820 { 6821 vmsvga3dUpdateHeapBuffersForSurfaces(pThis , pContext->aSidActiveTextures[0]);6821 vmsvga3dUpdateHeapBuffersForSurfaces(pThisCC, pContext->aSidActiveTextures[0]); 6822 6822 rc2 = vmsvga3dSurfaceFromSid(pState, pContext->aSidActiveTextures[0], &pSurface); 6823 6823 if (RT_SUCCESS(rc2)) -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA3d-win.cpp
r82586 r82609 5347 5347 if (pContext->state.aRenderTargets[SVGA3D_RT_COLOR0] != SVGA3D_INVALID_ID) 5348 5348 { 5349 vmsvga3dUpdateHeapBuffersForSurfaces(pThis , pContext->state.aRenderTargets[SVGA3D_RT_COLOR0]);5349 vmsvga3dUpdateHeapBuffersForSurfaces(pThisCC, pContext->state.aRenderTargets[SVGA3D_RT_COLOR0]); 5350 5350 PVMSVGA3DSURFACE pSurface; 5351 5351 int rc2 = vmsvga3dSurfaceFromSid(pState, pContext->state.aRenderTargets[SVGA3D_RT_COLOR0], &pSurface); … … 5356 5356 if (pContext->aSidActiveTextures[0] != SVGA3D_INVALID_ID) 5357 5357 { 5358 vmsvga3dUpdateHeapBuffersForSurfaces(pThis , pContext->aSidActiveTextures[0]);5358 vmsvga3dUpdateHeapBuffersForSurfaces(pThisCC, pContext->aSidActiveTextures[0]); 5359 5359 rc2 = vmsvga3dSurfaceFromSid(pState, pContext->aSidActiveTextures[0], &pSurface); 5360 5360 if (RT_SUCCESS(rc2))
Note:
See TracChangeset
for help on using the changeset viewer.