Lines Matching refs:pSharedSurface

1593     PVMSVGA3DSHAREDSURFACE pSharedSurface = (PVMSVGA3DSHAREDSURFACE)pNode;
1601 Assert(pSharedSurface->u.pTexture);
1602 if (pSharedSurface->u.pTexture)
1603 pSharedSurface->u.pTexture->Release();
1716 PVMSVGA3DSHAREDSURFACE pSharedSurface = (PVMSVGA3DSHAREDSURFACE)RTAvlU32Get(&pSurface->pSharedObjectTree, pContext->id);
1717 if (!pSharedSurface)
1729 pSharedSurface = (PVMSVGA3DSHAREDSURFACE)RTMemAllocZ(sizeof(*pSharedSurface));
1730 AssertReturn(pSharedSurface, NULL);
1732 pSharedSurface->Core.Key = pContext->id;
1733 ret = RTAvlU32Insert(&pSurface->pSharedObjectTree, &pSharedSurface->Core);
1743 &pSharedSurface->u.pTexture,
1747 return pSharedSurface;
1893 PVMSVGA3DSHAREDSURFACE pSharedSurface = vmsvga3dSurfaceGetSharedCopy(pThis, pContext, pSurfaceSrc);
1894 AssertReturn(pSharedSurface, VERR_INTERNAL_ERROR);
1896 pSrcTexture = pSharedSurface->u.pTexture;
3102 PVMSVGA3DSHAREDSURFACE pSharedSurface = (PVMSVGA3DSHAREDSURFACE)RTAvlU32Get(&pSurface->pSharedObjectTree, cid);
3103 if (pSharedSurface)
3111 Assert(pSharedSurface->u.pTexture);
3112 if (pSharedSurface->u.pTexture)
3113 pSharedSurface->u.pTexture->Release();
3121 RTMemFree(pSharedSurface);
4493 PVMSVGA3DSHAREDSURFACE pSharedSurface = vmsvga3dSurfaceGetSharedCopy(pThis, pContext, pRenderTarget);
4494 AssertReturn(pSharedSurface, VERR_INTERNAL_ERROR);
4496 hr = pSharedSurface->u.pTexture->GetSurfaceLevel(0 /* Texture level 0 */,
4855 PVMSVGA3DSHAREDSURFACE pSharedSurface = vmsvga3dSurfaceGetSharedCopy(pThis, pContext, pSurface);
4856 AssertReturn(pSharedSurface, VERR_INTERNAL_ERROR);
4858 hr = pContext->pDevice->SetTexture(currentStage, pSharedSurface->u.pTexture);